Delegate is a simple, easy-to-use component for binding to events on all target elements matching the given selector, irrespective of whether they exist at registration time or not. This allows developers to implement the event delegation pattern.
Delegate is developed by FT Labs, part of the Financial Times.
The library has been deployed as part of the FT Web App and is tried and tested on the following browsers:
- Safari 5 +
- Mobile Safari on iOS 3 +
- Chrome 1 +
- Chrome on iOS 5 +
- Chrome on Android 4.0 +
- Opera 11.5 +
- Opera Mobile 11.5 +
- Firefox 4 +
- Internet Explorer 9 +
- Android Browser on Android 2 +
- PlayBook OS 1 +
Include delegate.js in your JavaScript bundle or add it to your HTML page like this:
<script type='application/javascript' src='/path/to/delegate.js'></script>
The script must be loaded prior to instantiating a Delegate object.
To instantiate Delegate on the body
:
window.addEventListener('load', function() {
new Delegate(document.body);
}, false);
Note: as of 0.1.2 you do not need to provide a DOM element at the point of instantiation, it can be set later via the root
method.
Delegate supports compilation with ADVANCED_OPTIMIZATIONS
('advanced mode'), which should reduce its size by about 70% (60% gzipped). Note that exposure of the Delegate
variable isn't forced therefore you must compile it along with all of your code.
Delegate has AMD (Asynchronous Module Definition) support. This allows it to be lazy-loaded with an AMD loader, such as RequireJS.
Delegate comes with support for installation via the Component package manager.
Installation via the Node Package Manager is supported, although Component is preferred as this is not strictly a Node package.
Tests are run using buster and sit in _tests/
. To run the tests statically:
$ cd dom-delegate/
$ buster static -c _tests/buster.js
Starting server on http://localhost:8282/
...then point your browser to http://localhost:8282/. To generate code coverage reports, for which buster-coverage is required:
$ buster server
buster-server running on http://localhost:1111
Point your browser to http://localhost:1111 and capture it, then in another terminal tab:
$ buster test -c _tests/buster.js
The report in build/logs/jscoverage/
can be processed using genhtml
, which is installed with lcov
.
Space-separated list of events to listen for e.g. mousedown mouseup mouseout
or click
.
Any kind of valid CSS selector supported by matchesSelector
. Some selectors, like #id
or tag
will use optimized functions internally that check for straight matches between the ID or tag name of elements.
Function that will handle the specified event on elements matching the given selector. The function will receive two arguments: the native event object and the target element, in that order.
If defined and non-null, will be made available in event.data
.
Calling off
with no arguments will remove all registered listeners, effectively resetting the instance.
Remove handlers for events matching these types, in a space-separated list, considering the other parameters.
Only remove listeners registered with the given selector, among the other arguments.
Only remove listeners registered with the given handler function, among the other arguments.
Set the delegate's root node or a selector string matching the root node.
If no element or string passed in the root node will be deleted and the event listeners will be removed.
Short hand for off() and root(), ie both with no parameters. Used to reset the delegate object.
The developers of Delegate are Matthew Andrews and Matthew Caruana Galizia. Test engineering by Sam Giles. The API is influenced by jQuery Live. All open source code released by FT Labs is licenced under the MIT licence. We welcome comments, feedback and suggestions. Please feel free to raise an issue or pull request. Enjoy.