Hi folks,
I'm using the cookie plugin to make the selected tab sticky, using
this syntax:
$('#tabs > ul').tabs({cookie: {expires: 7}})
I have several pages that use this syntax, and some of the pages
appear to "share" a cookie, in that the selected tab on one page then
also becomes the selected tab on another page. Is there a way to
specify a different cookie name for each page so there's no conflict?
I tried this, but it had no effect:
$('#tabs > ul').tabs({cookie: {name: 'foo', expires: 7}})
Thanks!
Jim