4umi.com/web/bookmarklet/cookie

Check-a-cookie

Page Bookmarklet

This bookmarklets displays the contents of the cookie associated with the current document in an alert box.

BookmarkletDescriptionLengthFrames?
Cookie!Alerts the contents of the cookie.126Yes

The code

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>