How to remove click delays on browsers with touch UIs in jquery?

FastClick

FastClick is a simple, easy-to-use library for eliminating the 300ms delay between a physical tap and the firing of a click event on mobile browsers. The aim is to make your application feel less laggy and more responsive while avoiding any interference with your current logic.
FastClick is developed by FT Labs, part of the Financial Times.

Compatibility

The library has been deployed as part of the FT Web App and is tried and tested on the following mobile browsers:
  • Mobile Safari on iOS 3 and upwards
  • Chrome on iOS 5 and upwards
  • Chrome on Android (ICS)
  • Opera Mobile 11.5 and upwards
  • Android Browser since Honeycomb
  • PlayBook OS 1 and upwards
FastClick doesn't attach any listeners on desktop browsers as it is not needed. Those that have been tested are:
  • Safari
  • Chrome
  • Internet Explorer
  • Firefox
  • Opera

Usage

Include fastclick.js in your JavaScript bundle or add it to your HTML page like this:
<script type='application/javascript' src='/path/to/fastclick.js'></script>
The script must be loaded prior to instantiating FastClick on any element of the page.
To instantiate FastClick on the body, which is the recommended method of use:
window.addEventListener('load', function() {
    new FastClick(document.body);
}, false);

Advanced

Internally, FastClick uses document.createEvent to fire a synthetic click event as soon as touchend is fired by the browser. It then suppresses the additional click event created by the browser after that. In some cases, the non-synthetic click event created by the browser is required, as described in the triggering focus example.
This is where the needsclick class comes in. Add the class to any element that requires a non-synthetic click.

Examples

FastClick is designed to cope with many different browser oddities. Here are some examples to illustrate this:


https://ftlabs.github.io/fastclick/

Comments