[jQuery] Re: xhr.responseText isn't showing up when expected

2008-11-23 Thread howardk
I'm laughing at myself. :-) Many thanks, dudes! Howard On Nov 23, 7:49 am, Ariel Flesler <[EMAIL PROTECTED]> wrote: > It's async, not asynch. > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On 23 nov, 12:40, howardk <[EMAIL PROTECTED]> wrote: > > > Am I misunderstanding how $.ajax( { ...,

[jQuery] Re: xhr.responseText isn't showing up when expected

2008-11-23 Thread Ariel Flesler
It's async, not asynch. -- Ariel Flesler http://flesler.blogspot.com On 23 nov, 12:40, howardk <[EMAIL PROTECTED]> wrote: > Am I misunderstanding how $.ajax( { ..., asynch: false } is supposed > to work? I'm not seeing a responseText value immediately on returning > from the ajax call as I would

[jQuery] Re: xhr.responseText isn't showing up when expected

2008-11-23 Thread Mike Alsup
>  var xhr = $.ajax( { >                         url:' getFontInfo.php', >                         data: 'font=' + fontFileName, >                         asynch: false >                 } ); > The option is 'async', not 'asynch'.