static ChainableStatement |
AttributesHelper.attr(java.lang.String key,
JsScope computedValue) |
Binds the attr statement.
|
static ChainableStatement |
EventsHelper.bind(EventLabel eventLabel,
JsScope jsScope) |
Binds a handler to one or more events (like click) for each matched element.
|
static ChainableStatement |
EventsHelper.blur(JsScope jsScope) |
Bind a function to the blur event of each matched element.
|
static ChainableStatement |
EventsHelper.change(JsScope jsScope) |
Bind a function to the change event of each matched element.
|
static ChainableStatement |
EventsHelper.click(JsScope jsScope) |
Bind a function to the click event of each matched element.
|
static ChainableStatement |
EventsHelper.dblclick(JsScope jsScope) |
Bind a function to the dblclick event of each matched element.
|
static ChainableStatement |
EventsHelper.die(EventLabel eventLabel,
JsScope jsScope) |
This does the opposite of live, it removes a bound live event.
|
static ChainableStatement |
EventsHelper.error(JsScope jsScope) |
Bind a function to the error event of each matched element.
|
static ChainableStatement |
EventsHelper.focus(JsScope jsScope) |
Bind a function to the focus event of each matched element.
|
static ChainableStatement |
EventsHelper.hover(JsScope over,
JsScope out) |
Simulates hovering (moving the mouse on, and off, an object).
|
static ChainableStatement |
EventsHelper.keydown(JsScope jsScope) |
Bind a function to the keydown event of each matched element.
|
static ChainableStatement |
EventsHelper.keypress(JsScope jsScope) |
Bind a function to the keypress event of each matched element.
|
static ChainableStatement |
EventsHelper.keyup(JsScope jsScope) |
Bind a function to the keyup event of each matched element.
|
static ChainableStatement |
EventsHelper.live(EventLabel eventLabel,
JsScope jsScope) |
Binds a handler to an event (like click) for all current - and future - matched element.
|
static ChainableStatement |
EventsHelper.load(JsScope jsScope) |
Bind a function to the load event of each matched element.
|
static ChainableStatement |
EventsHelper.mousedown(JsScope jsScope) |
Bind a function to the mousedown event of each matched element.
|
static ChainableStatement |
EventsHelper.mouseenter(JsScope jsScope) |
Bind a function to the mouseenter event of each matched element.
|
static ChainableStatement |
EventsHelper.mouseleave(JsScope jsScope) |
Bind a function to the mouseleave event of each matched element.
|
static ChainableStatement |
EventsHelper.mousemove(JsScope jsScope) |
Bind a function to the mousemove event of each matched element.
|
static ChainableStatement |
EventsHelper.mouseout(JsScope jsScope) |
Bind a function to the mouseout event of each matched element.
|
static ChainableStatement |
EventsHelper.mouseover(JsScope jsScope) |
Bind a function to the mouseover event of each matched element.
|
static ChainableStatement |
EventsHelper.mouseup(JsScope jsScope) |
Bind a function to the mouseup event of each matched element.
|
static ChainableStatement |
EventsHelper.one(EventLabel eventLabel,
JsScope jsScope) |
Binds a handler to one or more events to be executed once for each matched element.
|
static ChainableStatement |
EventsHelper.ready(JsScope jsScope) |
Binds a function to be executed whenever the DOM is ready to be traversed and manipulated.
|
static ChainableStatement |
EventsHelper.scroll(JsScope jsScope) |
Bind a function to the scroll event of each matched element.
|
static ChainableStatement |
EventsHelper.select(JsScope jsScope) |
Bind a function to the select event of each matched element.
|
static ChainableStatement |
EventsHelper.submit(JsScope jsScope) |
Bind a function to the submit event of each matched element.
|
static ChainableStatement |
EventsHelper.toggle(JsScope jsScope,
JsScope jsScope2) |
Toggle among two function calls every other click.
|
static ChainableStatement |
EventsHelper.toggle(JsScope jsScope,
JsScope jsScope2,
JsScope... jsScopes) |
Toggle among two or more function calls every other click.
|
static ChainableStatement |
EventsHelper.unbind(EventLabel eventLabel,
JsScope jsScope) |
This does the opposite of bind, it removes bound events from each of the matched elements.
|
static ChainableStatement |
EventsHelper.unload(JsScope jsScope) |
Bind a function to the unload event of each matched element.
|