Posted by: phpcurious on: December 10, 2008
test post for work
1 | tyan December 22, 2008 at 12:43 pm
Hi, I have a question regarding what you posted for http://filchiprogrammer.wordpress.com/2007/12/17/using-jquery-ajax-tabs-plugin/
how did u add those scripts into the code i have been trying to do that but i can’t get the ajax tabs to cache properly.
I have tried just adding the
$(‘#navtabs’).tabs({ cache: true }); $(‘#navtabs’).tabs({ ajaxOptions: { async: false } }); $(function() { $(‘#navtabs’).tabs({remote:true}); });
like this but it doesn’t work then i tried.
and this $(function() { $(‘#navtabs’).tabs({remote:true,cache: true,ajaxOptions: { async: false }}); });
2 | jojo siao December 23, 2008 at 9:14 am
Hi,
How do you say that your code not to be working? If you have firebug, you could check if you had a successful XHR session (how do you call it – transaction?) …
Your Name (required)
Your Email (required)
Your URL
Notify me of follow-up comments via email.
December 22, 2008 at 12:43 pm
Hi, I have a question regarding what you posted for http://filchiprogrammer.wordpress.com/2007/12/17/using-jquery-ajax-tabs-plugin/
how did u add those scripts into the code i have been trying to do that but i can’t get the ajax tabs to cache properly.
I have tried just adding the
$(‘#navtabs’).tabs({ cache: true });
$(‘#navtabs’).tabs({ ajaxOptions: { async: false } });
$(function() { $(‘#navtabs’).tabs({remote:true}); });
like this but it doesn’t work then i tried.
and this $(function() { $(‘#navtabs’).tabs({remote:true,cache: true,ajaxOptions: { async: false }}); });