Josh
Josh

Reputation: 3611

How to store an array in a JavaScript cookie?

Does anyone have a piece of JavaScript code that creates a cookie and stores an array in it? If you also have the code to read through through cookie and delete it, that would be great as well. Thanks!

Upvotes: 13

Views: 19824

Answers (2)

fzzle
fzzle

Reputation: 1494

jQuery, Cookie plugin:
Converting an array into a string:

> JSON.stringify([1, 2]);
> '[1, 2]'

Then:

$.cookie('cookie', '[1, 2]');

And then parse it:

JSON.parse($.cookie('cookie'));
> [1, 2]

Upvotes: 5

Christian Smorra
Christian Smorra

Reputation: 1754

have a look at: http://plugins.jquery.com/project/cookie https://plugins.jquery.com/cookie/

to store an array

$.cookie('COOKIE_NAME', escape(myarray.join(',')), {expires:1234});

to get it back

cookie=unescape($.cookie('COOKIE_NAME'))
myarray=cookie.split(',')

Upvotes: 11

Related Questions