This bookmarklets displays the contents of the cookie associated with the current document in an alert box.
| Bookmarklet | Description | Length | Frames? |
|---|---|---|---|
| Cookie! | Alerts the contents of the cookie. | 126 | Yes |
The HTML code of the link looks like this:
<a href="javascript:if(document.cookie.length<1){alert('No cookie from this site!')}else{alert(document.cookie.replace(/; /g, '\n\n'))}">Cookie!</a>