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.
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();