An open API service indexing awesome lists of open source software.

https://github.com/unfold/jquery.tapclick

This plugin should solve your unresponsive slow taps.
https://github.com/unfold/jquery.tapclick

Last synced: 6 days ago
JSON representation

This plugin should solve your unresponsive slow taps.

Awesome Lists containing this project

README

          

#jquery.tapClick

This plugin is deprecated. See [jquery.taplizer](https://github.com/unfold/jquery.taplizer "unfold/jquery.taplizer")

This plugin should solve your unresponsive slow taps on touch devices. Made to intercept jquery click events. Supports normal events and delegates.

## Usage

// Initialize tapClick
$.tapClick();

// Bind events
$('.button').on('click', handler);

## Usage with Modernizr
You can use any test you'd like to initialize tapClick. Here's an example using [Modernizr](http://modernizr.com "Go to Modernizr website").

// Initialize tapClick if touch
Modernizr.touch && $.tapClick();

// Bind events
$('.button').on('click', handler);