vote up 1 vote down star

I wrote some bookmarklets to automate some tasks on a webpage. I'd like to be able to store a value somehow, so that when I run a bookmarklet the second time, it will see that it exists, and try to use it.

I'd like to be able to do that using pure javascript. Kind of like greasemonkey's storage.

flag

On the same page, or across pages/pageloads? – August Lilleaas Aug 9 at 11:09
On the same page. However, the page may be open in more than one tab. – Geo Aug 9 at 11:16

1 Answer

vote up 2 vote down check

If you don't need to save the value between domains you can use JavaScript cookies, by using document.cookie.
The w3 have a simple example: http://www.w3schools.com/JS/js_cookies.asp,
and here's another example from Microsoft: http://msdn.microsoft.com/en-us/library/ms533693%28VS.85%29.aspx

link|flag
can you provide a snippet? – Geo Aug 9 at 11:17
one more question:will the cookie be seen across all the tabs that have the page open? – Geo Aug 9 at 11:33
From a quick test it looks like it does (on Firefox), though different browsers may behave, well, differently. – Kobi Aug 9 at 11:41
Thanks for all the information. – Geo Aug 9 at 12:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.