No jQuery.
I want to store an object or array in a cookie.
The object should be usable after page refresh.
How do I do that with pure JavaScript? I read many posts, but do not know how to serialize appropriately.
EDIT:
Code:
var instances = {};
...
instances[strInstanceId] = { container: oContainer };
...
instances[strInstanceId].plugin = oPlugin;
...
JSON.stringify(instances);
// throws error 'TypeError: Converting circular structure to JSON'
-
How do I serialize
instances? -
How do I maintain functionality, but change structure of instance to be able to serialize with
stringify?
Try that one to write
To read it take:
To delete it take:
To serialize complex objects / instances, why not write a data dump function in your instance:
Then you dump the data, stringify it, write it to the cookie, and next time you want to use it just go: