Hi i have the following code
var $tabs = $("#tabs").tabs({
cookie: { expires:1 }
});
this very nice. But how can i unset this cookie? something like
$( "#tabs" ).tabs( "option", "cookie", { expires: 0 } );
Any suggestion?
|
Hi i have the following code
this very nice. But how can i unset this cookie? something like
Any suggestion? |
|||
|
|
|
You can set the name of the cookie in the parameters.
Name your cookie this way :
Since jQuery uses jquery.plugin.cookie.js for this to work, you can use this same plugin to erase your cookie :
|
|||||||||||
|
|
The jQuery UI tabs cookie option has an additional name parameter which lets you specifically define the name of the cookie, as opposed to letting jQuery UI define the name. If you do this, then you can control the cookie with the jQuery Cookie plugin to delete it.
|
|||
|
|