Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
oui-dom-events
Advanced tools
DOM events manager with namespace support
npm install oui-dom-events
Bind fn
to be called when eventName
is triggered on element
import E from 'oui-dom-events'
let el = document.querySelector('div');
let fn = function() { /*...*/ }
E.on(el, 'click', fn);
// bind with namespace
E.on(el, 'click.slider', fn);
Remove all event callbacks bing called when eventName
is triggered on element
E.off(el, 'click');
// unbind with namespace
E.off(el, 'click.slider');
Remove fn
from being called when eventName
is triggered on element
// this also unbind events with namespace
E.off(el, 'click', fn);
// only unbind fn with namespace
E.off(el, 'click.slider', fn);
Delegate fn
to be called when eventName
is triggered on all elements that match selector
under element
E.delegate(el, '.item', 'click', fn);
// delegate with namespace
E.delegate(el, '.item', 'click.slider', fn);
Delegate fn
to be called when eventName
is triggered on all elements that match selector
under element
E.undelegate(el, '.item', 'click', fn);
// undelegate with namespace
E.undelegate(el, '.item', 'click.slider', fn);
E.undelegate(el, '.item', 'click.slider');
// off also unbind all delegated events
E.off(el, 'click');
Trigger an eventName
with dataObject
on element
E.trigger(el, 'click', {key1: 'data1'})
mouseenter
doesn't bubble, use mouseover
and mouseout
instead.MIT
FAQs
DOM Utils of OneUI
The npm package oui-dom-events receives a total of 3 weekly downloads. As such, oui-dom-events popularity was classified as not popular.
We found that oui-dom-events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.