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.
- Host: GitHub
- URL: https://github.com/unfold/jquery.tapclick
- Owner: unfold
- Created: 2012-05-16T11:20:41.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-06-19T12:50:01.000Z (about 14 years ago)
- Last Synced: 2025-10-28T16:57:27.047Z (9 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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);