
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
vanilla-delegate
Advanced tools
Simple vanilla js event delegation that can be destroy trigger once and use native event
Simple vanilla js event delegation that can be destroy trigger once and use native event
yarn install
Simple and light lib to delegate events.
Instead of binding lot of events of repeated items on a page, you can deleagte those events by using this simple function. It only apply on a wanted element and parcour all it children finding the matching selectors and propaging events for thoses targets. The callback function return an DelegateEvent similar to nativeEvent except the delegateTarget which must be used instead of target or currentTarget. It always match the selector.
Simple use case:
/**
* Bind given callback onto existing and upcoming elements matching the given
* selector, for events of type eType.
* Use e.delegateTarget instead of e.target in the callback function to get the HTMLElement representative of selector
*
* @param {HTMLElement} $container HTMLElement into which to apply Selector
* @param {String} selector Selector matching HTMLElements onto which the callback will be bind
* @param {String} eType String event or list of events seperated by , (ex: 'touchstart,touchmove,touchend')
* @param {Function} callback Function to execute when catching the event
* @param {boolean} useCapture Boolean that dertemine if the event must use capture or not (default: false)
* @param {boolean} once Boolean that dertemine if the event must trigger only once
* @returns {{delegate: Function, undelegate: Function}|void}
*/
delegate(
$container,
'.selector',
'click',
({delegateTarget, ...e}) => {
console.log('target', delegateTarget, e.type);
},
);
Undelegate Event:
const instance = delegate(
$container, // HTMLElement
'.selector', // Selector
'click', // Event
({delegateTarget, ...e}) => {
console.log('target', delegateTarget, e.type);
}, // callback function
);
// When you need to remove the event..
instance.undelegate();
// You can alose delegate the event if need to rebind after that (be careful, you need to check if event is already binded to avoid multiple binding of the same function !)
instance.delegate();
👤 Maxime Lerouge
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2024 Maxime Lerouge.
This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator
FAQs
Simple vanilla js event delegation that can be destroy trigger once and use native event
We found that vanilla-delegate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.