Tell me how to clear the cookie
value on all pages of the site by the specified key.
I did not clean it like this anywhere:
$.cookie('nsc_visID',null,{ expires: 1, path: '/advertiser' })
This is how it is cleared only on pages in the root directory:
$.cookie('nsc_visID',null,{ expires: 1, path: '/' })
null
, put expires 1 and they will be deleted in a day. - Jean-Claude