Reload page on deleting cookies
Hi,
I wonder how you reload a page, when you manually delete browser cookies using the browsers Ctrl + Shift + Del menu.
Something like:
- $('window').bind('delete_cookie_event', function( e ) {
- location.reload();
- });
I'm have looked on the internet for a solution, but I find nothing but pages on how to delete cookies using JS.
Thanks in advance!
Chirstophe