Deleting Cookies with JavaScript
(Using the cookie library)
The syntax for GetCookie is:
DeleteCookie(name)
The code I used here to delete the cookie called "nickname" is:
DeleteCookie("nickname")
View your cookie file to see that this cookie has been deleted.

