clicktap

0.0.3 • Public • Published

clicktap Build Status devDependency Status

A JavaScript library to prevent the 300ms click delay on touch devices.

Installation

$ npm install clicktap

$ bower install clicktap

$ component install pazguille/clicktap

Usage

<button id="btn">Click me</button>
function litenerFunction() {
  // Some code here!
}
 
var btn = document.getElementById('btn');
 
clicktap(btn, litenerFunction);

API

clicktap(el, listener, [capture]);

clicktap.on(el, listener, [capture]);

Adds a listener to a given HTMLElement on click/tap event.

  • el {HTMLElement} - A given HTMLElement.
  • listener {Function} - A given listener to execute on click/tap.
  • capture {Boolean} - Indicate if use capture path.
clicktap(document, litenerFunction, true);
 
// or
 
clicktap.on(document, litenerFunction);

clicktap.off(el, listener);

Removes a listener from a given HTMLElement.

  • el {HTMLElement} - A given HTMLElement.
  • listener {Function} - A given listener to execute on click/tap.
clicktap.off(document, litenerFunction);

Made and maintained with ❤ by

License

MIT license. Copyright © 2014.

Package Sidebar

Install

npm i clicktap

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • pazguille