This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // THE GOAL | |
| // Write $('ul').on('click', 'a', fn); in JavaScript | |
| // Must support old IE (so no Selectors API (matchesSelector) or anything) | |
| // Can you shorten this? | |
| var addEvent = (window.addEventListener ? | |
| function (el, ev, fn) { | |
| el.addEventListener(ev, fn, false); | |
| } : | |
| function (el, ev, fn) { |