There isn't a built in way to do this at the moment. You'd need to get the cookie name and delete it 'manually'. Something like:
[code]
document.cookie = sOldName+"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path="+aParts.join('/') + "/";
[/code]
which is taken from DataTables code. You'll need to know the path and the name of the cookie.
Replies
[code]
document.cookie = sOldName+"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path="+aParts.join('/') + "/";
[/code]
which is taken from DataTables code. You'll need to know the path and the name of the cookie.
Allan
Thanks Allan it's work fine...
naz