Add a custom event listener
summary (oneliner)
Adds a custom event listener to the HTML DOM element.
doc
issues
example patch id
youtube ids (comma seperated)
caniuse query
collections
Inputs
Element (Object)
The HTML DOM element to add the listener to
Event Name (string /Number)
Use Capture (boolean /Number)
If multiple elements register an event listener, setting Use Capture
will make sure the listener will be called before the regular (bubble) listeners. For more infos read here: javascript.info/bubbling-and-capturing.
Prevent Default (boolean /Number)
If set the default browser action for the event will not be executed. See developer.mozilla.org.
Stop Propagation (boolean /Number)
Stops other elements’ event listeneres from getting called. See developer.mozilla.org.
Outputs
Event Trigger (Trigger)
Trigger when the event occured
Event Object (Object)
The event object contains details about the event