jquery-total-storage
jquery-total-storage copied to clipboard
A jQuery plugin to manage local storage and cookies simultaneously in a simple interface
Also, reformatted the code and minified. Now you can do something like `$.totalStorage('key', 'value', { secure: true })` Thanks! :)
The function setItem, beginning on line 98 of jquery.total-storage.js, has a bug in it: ``` setItem: function(key, value){ if (!supported){ try { $.cookie(key, value); return value; } catch(e){ console.log('Local Storage...
I am working on a project that uses both jquery and prototype.js, so I have to use jQuery in noConflict mode. If I do this: $j = jQuery.noConflict(); $j.totalStorage('visited', 1);...
Not too important, and probably easy fixes: ``` jquery.total-storage.js:28: WARNING - Parse error. extra @desc tag * @desc Set the value of a key to a number ``` Same for...
I'm developing an application that can only use libraries with MIT Licence. On your blog you just say "it's free" and on Github is nothing. And in the source code...