.on()
Syntax Variants
Parameters
- selector (optional)
- a selector string for $() to register the event only on those children of the list elements that match the selector. Supports all valid parameters for $() except functions.
- names
- the space-separated names of the events to register for, e.g. 'click'. Case-sensitive. The 'on' prefix in front of the name must not used. You can register the handler for more than one event by specifying several space-separated event names. If the name is prefixed with '|' (pipe), the event will be passed through and the event's default actions will be executed by the browser. If the name is prefixed with '?', the event will only be passed through if the handler returns true.
- eventHandler
- the callback
function(event, index)to invoke when the event has been triggered:- event
- The original DOM event object.
- index
- The index of the target object in the Minified list .
- this
- A Minified list containing the target element as only item (same as event.target).
- (callback return value)
- The return value will only be used if the event name prefix was '?'. Then, a return value false will stop all further processing of the event and disable event bubbling. true will keep the event alive.
- customFunc
- a function to be called instead of a regular event handler with the arguments given in args. 'this' will be a Minified list containing the target element as only item (same element as event.target).
- args (optional)
- an array of arguments to pass to the custom callback function instead of the event objects. If omitted, the function is called as event handler with the event object as argument.
- bubbleSelector (optional)
- a selector string for $() to receive only events that bubbled up from an
element that matches this selector.
Supports all valid parameters for $() except functions. Analog to
is(), the selector is optimized for the simple patterns '.classname', 'tagname' and 'tagname.classname'. - (return value)
- the list
Description
Registers the function as event handler for all items in the list.
By default, Minified cancels event propagation and disables element's default behavior for all elements that have an event handler. You can override this, either by prefixing the event name with a '|', or by prefixing them with '?' and returning a true in the handler. Both will reinstate the original JavaScript behavior.
Handlers are called with the original event object as first argument, the index of the source element in the list as second argument and 'this' set to the source element of the event (e.g. the button that has been clicked).
Instead of the event objects, you can also pass an array of arguments that will be passed instead of event object and index.
Optionally you can specify two a selector strings to qualify only certain events. The first one is a selector
that allows you to select only specific children of the list elements. This is mostly useful for adding events to DOM trees
generated using HTML() or EE().
The second type of selector is the bubble selector that allows you to receive only events that bubbled up from elements matching the selector. The selector is executed in the context of the element you registered on to identify whether the original target of the event qualifies. If not, the handler is not called.
Minified always registers event handlers with event bubbling enabled. Event capture is not supported.
Event handlers can be unregistered using $.off().
Example
Adds a handler to all divs which paints the div background color to red when clicked.
$('div').on('click', function() {
this.style.backgroundColor = 'red'; // 'this' contains the element that caused the event
});
Example
Registers a handler to call a method setStatus('running') using an inline function:
$('#myButton').on('click', function() {
setStatus('running');
});
The previous example can bere written like this, using on()'s args parameter:
$('#myButton').on('click', setStatus, ['running']);
Example
Adds two handlers on an input field. The event names are prefixed with '|' and thus keep their original behavior:
$('#myInput').on('|keypress |keydown', function() {
// do something
});
Example
Adds a click handler that will abort the operation by returning false, unless the user confirms it:
$('#myLink').on('?click', function() {
return window.confirm('Really leave?');
});
Example
Adds a button and registers a click handler for it using a sub-selector.
$('#myForm').add(HTML("<li><button>click me</button></li>").on('button', 'click', myClickHandler));
Example
Adds listeners for all clicks on a table's rows using the bubble selector 'tr'.
$('#table').on('change', 'tr', function(event, index, selectedIndex) {
alert("Click on table row number: " + selectedIndex);
}, 'tr');
Please note that bubble selectors will even listen to events for
table rows that have been added after you registered for the events.
See also..
off()allows you to unregister an event handler.onClick()as a shortcut for 'click' events.onOver()to simplify mouseover/mouseout events.onFocus()as convenient way to register for focus events.onChange()to get notified when an input's content changes.
Comments
comments powered by DisqusFunctions
- $() Web
- list.length Web, Util
- $$() Web
- $.getCookie()
- $.loop() Web
- $.off() Web
- $.parseJSON() Web
- $.ready() Web
- $.request() Web
- $.setCookie()
- $.toJSON() Web
- $.wait()
- .add() Web
- .addAfter() Web
- .addBefore() Web
- .addFront() Web
- .animate() Web
- .array() Util
- .call() Util
- .clone() Web
- .collect() Web, Util
- .contains() Util
- .dial() Web
- .each() Web, Util
- .endsWith() Util
- .equals() Util
- .fill() Web
- .filter() Web, Util
- .find() Web, Util
- .findLast() Web, Util
- .get() Web
- .hide() Web
- .ht()
- .intersection() Util
- .is() Web
- .join() Util
- .map() Util
- .merge() Util
- .next() Web
- .not() Web
- .offset()
- .on() Web
- .onChange() Web
- .onClick() Web
- .onFocus() Web
- .onOver() Web
- .only()
- .per() Util
- .reduce() Util
- .remove() Web
- .replace() Web
- .reverse() Util
- .select() Web
- .set() Web
- .show() Web
- .sort() Util
- .startsWith() Util
- .sub() Web, Util
- .text() Web
- .toObject() Util
- .toggle() Web
- .trav() Web
- .trigger() Web
- .uniq() Util
- .unite() Util
- .up() Web
- .values() Web
- EE() Web
- HTML() Web
- M Web, Util
- MINI.getter Web
- MINI.setter Web
- Minified Lists Web, Util
- Promise Web, Util
- _() Util
- _.bind() Util
- _.copyObj() Util
- _.dateAdd() Util
- _.dateClone() Util
- _.dateDiff() Util
- _.dateMidnight() Util
- _.eachObj() Util
- _.escapeHtml() Util
- _.escapeRegExp() Util
- _.extend() Util
- _.filterObj() Util
- _.format() Util
- _.formatHtml() Util
- _.formatValue() Util
- _.isBool() Util
- _.isDate() Util
- _.isEmpty() Util
- _.isFunction() Util
- _.isList() Util
- _.isNumber() Util
- _.isObject() Util
- _.isString() Util
- _.isValue() Util
- _.keys() Util
- _.mapObj() Util
- _.pad() Util
- _.parseDate() Util
- _.parseNumber() Util
- _.partial() Util
- _.promise()
- _.range()
- _.template() Util
- _.toString() Util
- _.trim() Util
- _.values() Util
- define() Web, Util
- promise.always()
- promise.error() Web, Util
- promise.fire()
- promise.stop()
- promise.then() Web
- require() Web, Util
- How to...