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, bool)
set(string, mixed, bool)
remove(string, bool)
clear(bool)
object_keys(object)
array_combine(array/object, array/object)
object_merge(object)
str_trans(string, mixed, string)
«
Kis JS Documentation

Namespace $_

Defined in: core.js.

Field Summary
dom DOM Dom manipulation module
store Wrapper for localstorage / sessionstorage data serialization
util String and object manipulation utilities
Method Summary
$(string, string) $ Simple DOM selector function
ext(string, object) Adds the property `obj` to the $_ object, calling it `name`
each(function) Iterates over a $_ object, applying a callback to each item
type(mixed) Retrieves the type of the passed variable
get(string, object, function) Sends a GET type ajax request
post(string, object, function) Sends a POST type ajax request
Field Detail
$_.dom
DOM Dom manipulation module

Defined in: DOM.js.


									
								
									
										
										
										
										
				
								
$_.store
Wrapper for localstorage / sessionstorage data serialization

Defined in: store.js.


									
								
									
										
										
										
										
				
								
$_.util
String and object manipulation utilities

Defined in: util.js.


									
								
									
										
										
										
										
				
								
$_.event

Defined in: event.js.


									
								
									
										
										
										
										
				
								
Method Detail
$_.$(string, string) : object
$ Simple DOM selector function

										
									
Parameters:
string selector
string context
Returns:
object
$_.ext(string, object)
Adds the property `obj` to the $_ object, calling it `name`

										
									
Parameters:
string name
object obj
Returns:
void
$_.each(function)
Iterates over a $_ object, applying a callback to each item

										
									
Parameters:
function callback
Returns:
void
$_.type(mixed) : string
Retrieves the type of the passed variable

										
									
Parameters:
mixed obj
Returns:
string
$_.get(string, object, function)
Sends a GET type ajax request

Defined in: ajax.js.


										
									
Parameters:
string url
object data
function callback
Returns:
void
$_.post(string, object, function)
Sends a POST type ajax request

Defined in: ajax.js.


										
									
Parameters:
string url
object data
function callback
Returns:
void