Because you want the $ of jQuery without the jQuery.
You may be interested in bling.js if you get tired of the Array.from(document.querySelectorAll('.foo')).forEach(…
rodeo. It does this:
// forEach over the qSA result, directly.
document.querySelectorAll('input').forEach(el => /* ... */);
// on() rather than addEventListener()
document.body.on('dblclick', evt => /* ... */);
// classic jQuery + on()
$$('p').on('click', el => /* ... */);
It doesn’t do anything else. This is not a jQuery equivalent.
on()
works on elements, document
, window
, and results from querySelector
& querySelectorAll
.$
is qSA so if you’re grabbing a single element you’ll have to [0]
it.Node.prototype.on = EventTarget.prototype.addEventListener
is awesome. It works in Chrome/FF but not yet in IE/Safari.dispatchEvent
& removeEventListener
. I’m OK with that.(Added 2024..)
declare global {
interface Node {
on(name: string, fn: EventListenerOrEventListenerObject): void;
}
interface Window {
on(name: string, fn: EventListenerOrEventListenerObject): void;
$(selector: string): Element | null;
$$(selector: string): NodeListOf<Element>;
}
interface NodeList extends Array<Node> {
on(name: string, fn: EventListenerOrEventListenerObject): void;
}
}