šŸ”” Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A simple, lightweight jQuery plugin for reading, writing and deleting html5 local storage.

HTML5 Plugins

Documentation

#jquery-localstorage

A simple, lightweight jQuery plugin for reading, writing and deleting html5 local storage

##Installation

Include script after the jQuery library (unless you are packaging scripts somehow else):

<script src="/path/to/jquery.localstorage.js"></script>

##Usage Save:

value = $.localStorage('key', 'value');

Read:

value = $.localStorage('key');

Read all (values.constructor is Storage):

values = $.localStorage();

Initialization result:

result = $.support.localStorage;

##IO methods Save:

io = $.localStorage.io('key'); value = io.write("value");

Read:

io = $.localStorage.io('key'); value = io.read();

Remove:

io = $.localStorage.io('key'); io.remove();

Key:

io = $.localStorage.io('key'); io.key;

##Jasmine Test TestPage


You May Also Like