🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A jQuery plugin to manage local storage and cookies simultaneously in a simple interface.We found that HTML5 Local Storage gave us the best return in terms of reliability and speed. Internet Explorer compatibility? Not so much. So we wrote totalStorage, a jQuery plugin that combines the ease and usefulness of totalStorage with the universal compatibility of cookies (along with some helpful tools like automatic JSON encoding/decoding).The browser doesn’t support local storage it will fall-back to cookies! (Using the wonderful $.cookie plugin).Send it strings, numbers even complex object arrays! TotalStorage does not care. Your efforts to defeat it will prove futile.Simple as shit. jStorage and some other very well-written plugins provide a bevy of options for expiration, security and so forth. Frequently this is more power than you need and vulnerable to confusion if you just want it to work (JWITW)

Plugins Web

Documentation

image Dead-Simple local storage for every browser and device

What makes it TOTAL Storage?

  • The browser doesn't support local storage it will fall-back to cookies! (Using the wonderful $.cookie plugin).
  • Send it strings, numbers even complex object arrays! TotalStorage does not care. Your efforts to defeat it will prove futile.
  • Simple as shit. jStorage and some other very well-written plugins provide a bevy of options for expiration, security and so forth. Frequently this is more power than you need and vulnerable to confusion if you just want it to work (JWITW)

Some examples

  • Set the value of a key to a string

     $.totalStorage('the_key', 'the_value'); 
  • Set the value of a key to a number

     $.totalStorage('the_key', 800.2); 
  • Set the value of a key to a complex Array

     var myArray = new Array();  myArray.push({name:'Jared', company:'Upstatement', zip:63124});  myArray.push({name:'McGruff', company:'Police', zip:60652};  $.totalStorage('people', myArray);    //to return:  $.totalStorage('people'); 

The stats:

Some background:

Why?

Last year my firm worked on a project to help seniors calculate their savings, social security, mortgate, etc. so they could better plan for retirement. This involved the users entering a lot of data (and because of privacy risks we didn't want to store all that personal financial data). Using the browser's local storage was perfect ... except for Internet Explorer. So I wrote this as a way to integrate localStorage or cookies depending on what the browser could handle AND let me access it in a super-simple way all across the application.

Many thanks to:

Andris Reinman and Klaus Hartl. Their plugins (jStorage and Cookie, respectively) provided the roadmap to make this. Also feedback and comments from users have been most helpful in making this more efficient and killing some bugs.

Bitdeli Badge


You May Also Like