Hi
I'm using tabs in my website, but on a page refresh it has to remember
the last active tab, and not going to the first tab each time.
I've read in the documentation that it's just 1 option that has to be
added like this:
$(function() {
$("#tabs").tabs({
cookie: { expires: 30 }
});
});
But when i add the cookie option, my tabs don't work anymore, the
whole content is over the whole page...
Anything i have to add to get it work ?
Thanks in advance