R – Can we store/get Client Side Persistent data using Prototype.js

prototypejs

Please comment on this How can we store Client Side Persistent data using Prototype.js?
For Ex.:-In Curl Programming language we can set the data as key-value pair in persistent storage and get through the key.

Regards,
Mannusanghi

Best Answer

There is no API to access the persistent storage facility of the browser (or browser plugin) in prototype.js. You will have to look for another library in addition to prototype.

I have no experience with it, but the first hit on Google is PersistJS, which looks promising.

Related Topic