badrudeen / clicktap

A JavaScript library to prevent the 300ms click delay on touch devices (just 740 bytes).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A JavaScript library to prevent the 300ms click delay on touch devices (just 740 bytes).

License:MIT License