Added the rest of the functions

This commit is contained in:
Timothy Warren 2011-06-14 13:01:38 -04:00
parent ccf8e04b8b
commit bbc0522842
1 changed files with 26 additions and 5 deletions

View File

@ -19,23 +19,44 @@ Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera
functions:
* Get:
Use: `$_.get(url, data_object, callback);`
Use:
$_.get(url, data_object, callback);
* Post:
Use: `$_.post(url, data_object, callback);`
Use:
$_.post(url, data_object, callback);
**QS**: querystring parsing and serialization for hashbang strings, and pushState urls
functions:
* Parse:
Use: `$_.qs.parse(hb);`
Use:
$_.qs.parse(hb);
* Set: This function will set the hash url if browser doesn't have history.pushState
Use: `$_.qs.set(key, value);`
Use:
$_.qs.set(key, value);
* Get: Retrieves the value of the key in the url string
Use: `$_.qs.get(key);`
Use:
$_.qs.get(key);
**Store**: localstorage wrapper with automatic data serialization
functions
* Get:
Use:
$_.store.get(key);
* Set
Use:
$_.store.set(key, value);
* getALL: Retreives all localstorage data in raw form
Use:
$_.store.getAll();