jQuery UI tabs - How to cahce only specific tabs?
is it possible to cache only specific tabs in a jquery tab widget?
for example i have a tab:
- $(function() {
$("#tabtab").tabs({
spinner: "",
cache: true,
ajaxOptions: {
async: false,
error: function( xhr, status, index, anchor ) {
$( anchor.hash ).html(
"foo" );
}
}
});
unsorted list has 10 <li>
is it possible to cache <li> 0/1/2,
but not to cache 3 to 9?
i have no idea how to do this