bind-click
v2.0.1
Published
Bind an event to the click of an element.
Downloads
5
Readme
bind-click
Attach a function to the click event while handling some edge cases that I like to address.
Notes
- Pass in a Node, NodeList, or a string to select the target element
- Fails gracefully if no elements are selected
- If a string selector is passed in, the DOM is queried each time giving a "jQuery live"-ish behavior
- Default event is click
- Solves click issue on some older iOS touch screens
Basic Usage
bindClick(document.querySelectorAll('.button'),function (e) {
console.log(e);
});
Requirements
- Solving this issue requires the Modernizr with the touchevents detect and
setClasses
enabled