see also ftlabs/fastclick
fast click for mobile browsers
// for all elements
fastClick();
/*
<div id="target">
<a href="http://example.com">fast</a>
</div>
<div>
<a href="http://example.com">slow</a>
</div>
*/
fastClick('#target');
/*
<div id="target">
<a href="http://example.com">fast</a>
<div id="ignore">
<a href="http://example.com">slow</a>
</div>
</div>
*/
fastClick('#target', '#ignore');
fastClick
Copyright (C) KAYAC Inc. | http://www.kayac.com/
Dual licensed under the MIT <http://www.opensource.org/licenses/mit-license.php>
and GPL <http://www.opensource.org/licenses/gpl-license.php> licenses.
@author @kyo_ago
Creating Fast Buttons for Mobile Web Applications - Mobile — Google Developers
FastClick: native-like tapping for touch apps | FT Labs
Configuring Defaults(useFastClick)
JavaScript Helper(Fast Buttons) · h5bp/mobile-boilerplate Wiki
Remove onClick delay on webkit for iPhone
Rob Juurlink » Blog Archive » Fast JavaScript Click Event for Touch Devices
javascript - Trying to implement Google's Fast Button - Stack Overflow