I have the same problem tooo. If i use the cookie feature code, and have set the expiration of the cookie to 1 day.
If i set the cookie feature, on-click of other tabs, the tab doesn't get highlighted and content related to the tab doesn't show up. But the cookie feature works. However if i remove the cookie related code, when i click a tab, the content for the respective tab shows up. Not sure if it is a bug with cookie. I could not find related info. online either.
Here is my function:
$(function(){
// Tabs
$('#tabs').tabs();
$("#tabs").tabs({
cookie: {
// store cookie for a day, without, it would be a session cookie
expires: 1
}
});
});
I have 4 tabs i can see all, but on-click of a tab, i don't see it's respective content. But cookie feature works just fine. However, if i remove the cookie feature, everything works fine.