I'm using jQuery tabs with jQuery cookie.
I'm using jQuery cookie to save the current selected tab, my problem is that I'm using a lot o tabs in my project, and once the selected tab is saved in cookie, is being saved for all of the tabs.
Is there any solution to it? I was thinking about setting dynamic cookie names for every page? But, how do I do that?
$('#tabs').tabs({
cookie: {
expires: 1,
name: // set different cookie name for each #tabs
}});
Any suggestion much appreciated.
