I want to use jQuery to delete cookies; I have tried this:
$.cookie(\'name\', \'\', { expires: -1 });
But when I refresh the page, the cookie
Try this
$.cookie('_cookieName', null, { path: '/' });
The { path: '/' } do the job for you