[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-08 Thread Gilcpd
Hey Guys I'm sorry to bother, but I have the same problem, and I've been trying to get around it. I added the option 'cache:false' on the tabs script: $(function() { $('#ajaxtab').tabs({ remote: true, cache: false }); }) But it did not work... I also tryed to add: $.ajaxSetup({ global

[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-03 Thread kyleduncan
Thank you! Worked via the global ajax settings. On Jul 3, 3:06 am, James wrote: > There's an option to set cache to false for tabs. > $('.selector').tabs({ cache: false }); > > Also, set your cache in AJAX options to false so the AJAX requests are > not cached.http://docs.jquery.com/Ajax/jQuery.

[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-02 Thread James
There's an option to set cache to false for tabs. $('.selector').tabs({ cache: false }); Also, set your cache in AJAX options to false so the AJAX requests are not cached. http://docs.jquery.com/Ajax/jQuery.ajaxSetup On Jul 2, 3:23 am, kyleduncan wrote: > I am using the Ajax method to load tabs