What's the best way to handle longtap and double-tap events on mobile devices using jQuery?

39,655

Solution 1

rsplak's answer is good. I checked out that link and it does work well.

However, it only implements a doubletap jQuery function

I needed a custom doubletap event that I could bind/delegate to. i.e.

$('.myelement').bind('doubletap', function(event){
    //...
});

This is more important if you're writing a backbone.js style app, where there is a lot of event binding going on.

So I took Raul Sanchez's work, and turned it into a "jQuery special event".

Have a look here: https://gist.github.com/1652946 Might be useful to someone.

Solution 2

Just use a multitouch JavaScript library like Hammer.js. Then you can write code like:

canvas
    .hammer({prevent_default: true})
    .bind('doubletap', function(e) { // Also fires on double click
        // Generate a pony
    })
    .bind('hold', function(e) {
        // Generate a unicorn
    });

It supports tap, double tap, swipe, hold, transform (i.e., pinch) and drag. The touch events also fire when equivalent mouse actions happen, so you don't need to write two sets of event handlers. Oh, and you need the jQuery plugin if you want to be able to write in the jQueryish way as I did.

I wrote a very similar answer to this question because it's also very popular but not very well answered.

Solution 3

You can also use jQuery Finger which also supports event delegation:

For longtap:

// direct event
$('selector').on('press', function() { /* handle event */ });

// delegated event
$('ancestor').on('press', 'selector', function() { /* handle event */ });

For double tap:

// direct event
$('selector').on('doubletap', function() { /* handle event */ });

// delegated event
$('ancestor').on('doubletap', 'selector', function() { /* handle event */ });

Solution 4

Here's a pretty basic outline of a function you can extend upon for the longtap:

$('#myDiv').mousedown(function() {
    var d = new Date;
    a = d.getTime();
});

$('#myDiv').mouseup(function() {
    var d = new Date;
    b = d.getTime();

    if (b-a > 500) {
        alert('This has been a longtouch!');
    }
});

The length of time can be defined by the if block in the mouseup function. This probably could be beefed up upon a good deal. I have a jsFiddle set up for those who want to play with it.

EDIT: I just realized that this depends on mousedown and mouseup being fired with finger touches. If that isn't the case, then substitute whatever the appropriate method is... I'm not that familiar with mobile development.

Share:
39,655
Luke Dennis
Author by

Luke Dennis

Updated on July 09, 2022

Comments

  • Luke Dennis
    Luke Dennis almost 2 years

    I'm looking for the best solution to adding both "doubletap" and "longtap" events for use with jQuery's live(), bind() and trigger(). I rolled my own quick solution, but it's a little buggy. Does anyone have plugins they would recommend, or implentations of their own they'd like to share?