Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 432 Bytes

README.markdown

File metadata and controls

23 lines (16 loc) · 432 Bytes

#JQuery Session Plugin Provides a simple interface into window.sessionStorage while providing limited support for cross protocol requests.

##Usage

$.session.set('some key', 'a value');

$.session.get('some key');
> "a value"

$.session.clear();

$.session.get('some key');
> undefined

$.session.set('some key', 'a value').get('some key');
> "a value"

$.session.remove('some key');

$.session.get('some key');
> undefined