Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

jquery-tap

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-tap

jquery.tap is a tap listener for jquery. Rather than waiting for the slow `click` listener to trigger on touch devices, it listens to touch events and triggers immediately after the touch finishes. The click event usually takes a few hundred milliseconds

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

jquery.tap

jquery.tap is a tap listener for jquery. Rather than waiting for the slow click listener to trigger on touch devices, it listens to touch events and triggers immediately after the touch finishes. The click event usually takes a few hundred milliseconds after this before triggering, which is a noticable delay.

usage

<script src="jquery.tap.js"></script>
<script>
  $(".tappable").tap(function() {
    console.log("Tappable was tapped!");
  });
</script>

what happens on non touch-capable devices?

If the browser the page is being viewed in does not support touches, the tap function will delegate to the regular click listener. This makes it suitable for responsive design.

what happens qualifies a "tap"

A tap is qualified by a user touching the screen and then releasing the touch without moving beyond a certain threshold. For example, if the touch moves 20 pixels, it may be considered as a drag, so the tap event will not fire. You can manually specify this threshold in the tap event function:

$(".tappable").tap(50, function() {
  // will be triggered as long as the touch is not dragged more than 50 pixels
});

other events

Other events you can listen for that are triggered by the tap listener include:

  • tap-failed - triggered when a touch is cancelled, or when a touch is released after dragging beyond the threshold.
  • exceed-tap-threshold - triggered immediately as the tap exceeds the threshold between tap and drag.

FAQs

Package last updated on 12 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts