Skip to content

medialize/jQuery-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Status: unmaintained!

I no longer use this utility, because all current browsers (including IE8+) support the LocalStorage interface.

If you are interested in taking over this utility, contact me so I can transfer the repository to your account.


$.store jQuery plugin

$.store is a simple, yet easily extensible, plugin to persistently store data on the client side of things. It uses window.localStore where available. Older Internet Explorers will use userData. If all fails $.store will save your data to window.name.

Note: The windowName will only do JSON serialization. windowName is not persistent in the sense of making it accross a closed browser window. If you need that ability you should check $.storage.driver.scope == "browser".

Usage


//initialize
$.storage = new $.store();

// save a value
$.storage.set( key, value );

// read a value
$.storage.get( key );

// deletes a value
$.storage.del( key );

// delete all values
$.storage.flush();

License

$.store is published under the MIT license and GPL v3.