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');
Set or get a key's value
Key to set.
Value to set for key. If ommited, current value for key is returned.
Not implemented.
any
Delete item by key
Key of item to delete
boolean
Get all set values
Array<any>
Get a key's value
Key to get.
Set a key's value
Value to set for key.