Namespace $_
Defined in: core.js.
Field Summary
Method Summary
Field Detail
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 |