<html>
<head>
<meta name="description" content="Vanilla JS delegated event listener" />
<script src="//code.jquery.com/jquery.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<title>Vanilla JS delegated event</title>
</head>
<body>
<h1>EventTarget.addDelegatedEventListener</h1>
<p>
<code>
<em>target</em>.addDelegatedEventListener(<em>type</em>, <em>selector</em>, <em>listener</em>[, <em>useCapture</em>]);
</code>
</p>
<dl>
<dt>type</dt>
<dd>A string representing the event type to listen for.</dd>
<dt>selector</dt>
<dd>A string representing the selector to test.</dd>
<dt>listener</dt>
<dd>The object that receives a notification when an event of the specified type occurs. This must be an object implementing the EventListener interface, or simply a JavaScript function.</dd>
<dt>useCapture</dt>
<dd>If true, useCapture indicates that the user wishes to initiate capture. After initiating capture, all events of the specified type will be dispatched to the registered listener before being dispatched to any EventTarget beneath it in the DOM tree. Events which are bubbling upward through the tree will not trigger a listener designated to use capture. If not specified, useCapture defaults to false.</dd>
</dl>
<div class="example">
<h3>Example</h3>
<p>
<pre>document.addDelegatedEventListener('click', '.clickable', clickHandler);
var rightBox = document.querySelector('.alert-warning');
rightBox.addDelegatedEventListener('click', "[rel='clickableInside']", clickHandler);</pre>
</p>
<div class="row">
<div class="col-xs-6 clickable">
<div class="alert alert-info">
clickable
<div class="alert alert-success" rel="clickableInside">
not clickable inside
</div>
</div>
</div>
<div class="col-xs-6 notClickable">
<div class="alert alert-warning">
not clickable
<div class="row">
<div class="col-xs-6">
<div class="alert alert-success" rel="clickableInside">
clickable inside
</div>
</div>
<div class="col-xs-6">
<div class="alert alert-success" rel="clickableInside">
clickable inside
</div>
</div>
</div>
</div>
</div>
</div>
<kbd id="console">jsbin.com/lugim/2 ~</kbd>
</div>
</body>
</html>
(function(document, EventTarget) {
var matcher = 'matches';
if (!Element.prototype.hasOwnProperty(matcher)) {
['webkit', 'moz', 'ms', 'o'].forEach(function(prefix) {
if (Element.prortype.hasOwnProperty(prefix + 'MatchesSelector')) {
matcher = prefix + 'MatchesSelector';
}
});
}
EventTarget.prototype.addDelegatedEventListener = function(eventName, selector, fn, useCapture) {
this.addEventListener(eventName, function(event) {
var element = event.target;
while (element && element !== this) {
if (element[matcher](selector)) {
fn.call(element, event, selector);
break;
}
element = element.parentElement;
}
}, useCapture || false);
};
}(document, window.EventTarget));
/**
Example usage below
**/
var cons = document.getElementById('console');
function slice(arr) {
return [].slice.call(arr);
}
function clickHandler(evt, selector) {
cons.textContent += '\n clicked: ' + selector;
}
document.addDelegatedEventListener('click', '.clickable', clickHandler);
var rightBox = document.querySelector('.alert-warning');
rightBox.addDelegatedEventListener('click', "[rel='clickableInside']", clickHandler);
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |