On Dec 16, 4:14 am, Henjo <henjohoek...@gmail.com> wrote:
> here is what I changed in order to get it to work in IE.
>
> Not working:
> jQuery('#option1').hide('fast').next().show('fast').bind
> ('change',function(){ ... }
>
> Working:
> jQuery('#option1').hide('fast').next().show('fast');
> jQuery('#productWizard #option2 select').bind('change',function()
> { ... }
>
> My conclusion: IE is not capable of putting a chained ajax request
> altogether nicely...

Since I've done plenty of chained requests like that, I'd be surprised
if that's the issue.  I wonder if there are any differences in what
"next()" in that chain is giving you in IE versus FF.  Not that at
matters for you since you've got a working solution, but it's
curious...

I'm glad you got it working.

Cheers,

  -- Scott

Reply via email to