Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've read that mobile Safari has a 300ms delay on click events from the time the link/button is clicked to the time the event fires. The reason for the delay is to wait to see if the user intends to double-click, but from a UX perspective waiting 300ms is often undesirable.

One solution to eliminate this 300ms delay is to use jQuery Mobile "tap" handling. Unfortunately I'm not familiar with this framework and don't want to load some big framework if all I need is a line or two of code applying touchend in the right way.

Like many sites, my site has many click events like this:

$("button.submitBtn").on('click', function (e) {   
  $.ajaxSubmit({... //ajax form submisssion
});

$("a.ajax").on('click', function (e) {   
  $.ajax({... //ajax page loading
});

$("button.modal").on('click', function (e) {   
      //show/hide modal dialog
});

and what I'd like to do is to get rid of the 300ms delay on ALL those click events using a single code snippet like this:

$("a, button").on('tap', function (e) {
 $(this).trigger('click');
 e.preventDefault();
});

Is that a bad/good idea?

share|improve this question
2  
@Pointy thanks, this might just work... – tim peterson Sep 2 '12 at 18:38
"...obviously this isn't great from a UX perspective." I would be wary about this assumption. – Oliver Moran Sep 2 '12 at 18:58
@OliverMoran, thanks for the correction, i just edited that sentence, see the question above.. – tim peterson Sep 2 '12 at 19:01
1  
might be a solution: stackoverflow.com/a/12969739/1491212 – Armel Larcier Nov 3 '12 at 12:40

4 Answers

up vote 7 down vote accepted

This plugin (FastClick developed by Financial Times) does it perfectly for you!

Make sure though to add event.stopPropagation(); and/or event.preventDefault(); directly after the click function, otherwise it might run twice as it did for me, i.e.:

$("#buttonId").live('click',function(event){
    event.stopPropagation(); event.preventDefault();
   //do your magic
});
share|improve this answer

Unfortunately there is no easy way to do this. So just using touchstart or touchend will leave you with other problems like someone starts scrolling when click on on a button for example. We use zepto for a while, and even with this really good framework there are some issues that came up over the time. A lot of them are closed, but it seems is not a field of simple solution.

We have this solution to globally handle clicks on links:

   $(document.body).
    on('tap', 'a',function (e) {
      var href = this.getAttribute('href');
      if (e.defaultPrevented || !href) { return; }
      e.preventDefault();
      location.href= href;
    }).
    on('click', 'a', function (e) {
      e.preventDefault();
    });
share|improve this answer
-@Andreas, thanks so you'd advocate not using the general tap solution i posted and factoring the tap events on an element-by-element basis? – tim peterson Sep 2 '12 at 20:17
No thats not the point. The point is not to try to build a tapsolution by yourself. I'll will update my answer. – Andreas Köberle Sep 2 '12 at 20:23
-@Andreas, thanks for your answer, many click events are AJAX so the default event is already prevented. Would you mind updating your answer to handle this too? It would seem that my general tap solution would look the same as yours in this case? – tim peterson Sep 2 '12 at 20:54

i know this is old but can't you just test to see if "touch" is supported in the browser? Then create a variable that's either "touchend" or "click" and use that variable as the event that gets bound to your element?

var clickOrTouch = (('ontouchend' in window)) ? 'touchend' : 'click';
$('#element').on(clickOrTouch, function() {
    // do something
});

So that code sample checks to see if the "touchend" event is supported in the browser and if not then we use the "click" event.

(Edit: changed "touchend" to "ontouchend")

share|improve this answer
Thanks, I like the simplicity of this. I would love for others to chime on its possible pitfalls. – tim peterson Apr 30 at 0:42
touchend event can't replace click event because of what @Andreas Köberle explains in his reply. Like for example if you scroll and your finger stop on a button, it will trigger the link... – Grsmto 2 days ago

Somehow, disabling zoom seems to disable this small delay. Makes sense, as double-tap isn't needed anymore then.

How can I "disable" zoom on a mobile web page?

But please be aware of the usability impact this will have. It may be useful for webpages designed as apps, but shouldn't be used for more general-purpose 'static' pages IMHO. I use it for a pet project that needs low latency.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.