jquery-localstorage

1.0.1 • Public • Published

MIT License Build Status

jquery-localstorage

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

Installation

CDN

Just put this tag:

<script src="https://cdn.jsdelivr.net/gh/hosokawat/jquery-localstorage/jquery.localstorage.min.js"></script>

Download

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

Readme

Keywords

Package Sidebar

Install

npm i jquery-localstorage

Weekly Downloads

7

Version

1.0.1

License

MIT

Unpacked Size

7.72 kB

Total Files

8

Last publish

Collaborators

  • hosokawat