Project Outline
 
$_
$(string, string)
ext(string, object)
each(function)
type(mixed)
get(string, object, function)
post(string, object, function)
addClass(string)
removeClass(string)
show(string)
attr(string, string)
text(string)
css(string, string)
html(string)
add(string, function)
remove(string, string)
live(string, string, function)
delegate(string, string)
get(string)
set(string, mixed)
remove(string)
object_keys(object)
array_combine(array/object, array/object)
object_merge(object)
str_trans(string, mixed, string)
«
Kis JS Documentation

Namespace $_.store

Defined in: store.js.

Method Summary
get(string) Retrieves and deserializes a value from localstorage, based on the specified key
set(string, mixed) Puts a value into localstorage at the specified key, and JSON-encodes the value if not a string
remove(string) Removes the specified item from localstorage
Method Detail
$_.store.get(string)
Retrieves and deserializes a value from localstorage, based on the specified key

										
									
Parameters:
string key
Returns:
object
$_.store.set(string, mixed)
Puts a value into localstorage at the specified key, and JSON-encodes the value if not a string

										
									
Parameters:
string key
mixed value
Returns:
void
$_.store.remove(string)
Removes the specified item from localstorage

										
									
Parameters:
string key
Returns:
void