Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Created June 2, 2014 06:38
Show Gist options
  • Select an option

  • Save leonguyen/46812f9985169a340f5c to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/46812f9985169a340f5c to your computer and use it in GitHub Desktop.
Cookie Array
var myAry = [1, 2, 3];
$.cookie('name', JSON.stringify(myAry));
var storedAry = JSON.parse($.cookie('name'));
//storedAry -> [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment