Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 506 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 506 Bytes

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

##Original project https://github.com/AlexChittock/JQuery-Session-Plugin

##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