Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.53 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.53 KB

Selective FastClick

A very early hack together of FT's FastClick with DOM Delegate libraries.

Installation

npm install selective-fastclick

And require with Browserify. Or download the prebuilt package

Demonstration

See a simple demonstration of Selective FastClick

Usage

If using the prebuild package use:

window.selectiveFastclick.attach(document.body, selectors);
var SelectiveFastClick = require('selective-fastclick');

var selectors = [
  'button',
  '.elements-with-class',
  '#element-with-this-id',
  'div.delegate-test-clickable + #another-delegate-test-clickable'
];

SelectiveFastClick.attach(document.body, selectors);

The first argument of attach is the element to attach the event delegator to - and the second argument is a string or array of strings of selectors to match against to provide 'FastClick' behaviour. Please see the documentation of FastClick for an explanation of what it does the documentation of FT DOM Delegate for details on which selectors are supported.

Credits and collaboration

The lead developer of Selective FastClick is Matt Andrews at FT Labs. All open source code released by FT Labs is licenced under the MIT licence. We welcome comments, feedback and suggestions. Please feel free to raise an issue or pull request.