0

I used the script described here: Show welcome div only once per user / browser session

My problem is that I need to know how to reset this cookie so the window can show up again for testing purposes.

Staging environment: http://rest.bsley.com/splash/

Any help?

Community
  • 1
  • 1
Jeremy P. Beasley
  • 679
  • 1
  • 7
  • 22

2 Answers2

0

Use $.removeCookie of jQuery cookie plugin to remove your cookie.

Syntax: $.removeCookie("cookiename");

mehulmpt
  • 15,861
  • 12
  • 48
  • 88
0
$.cookie("yourCookieName", null)
Mir Gulam Sarwar
  • 2,588
  • 2
  • 25
  • 39