Skip to content
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (14 loc) · 875 Bytes

README.textile

File metadata and controls

25 lines (14 loc) · 875 Bytes

Discontinued

Note I have received and still reviece numerous emails regarding getting jQuery.Storage up to date and adding the features that I have listed in my todo list. At the moment this project is currently completely inactive with no foreseeable plans to update or continue its development. There are various alternatives to this library. And in my opinion with the updating standards of all major browsers a javascript library similar to this may no longer be needed in the near future.

jQuery.Storage

This plugin provides a simple wrapper to store data in the browser. This allows data to be recalled later on for settings, saved state, etc.

**Code Sample

 // Saving
  $.Storage.saveItem('cow','moo');

  // Loading
  $.Storage.loadItem('cow');

  // Delete
  $.Storage.deleteItem('cow');

  // Clear all values
  $.Storage.deleteAll();