Is there a way to remove the clicking lag on mobile touch devices?

后端 未结 3 843
你的背包
你的背包 2020-12-17 22:12

When viewing a web site on a mobile device (iPad, Galaxy Tab) there\'s always a lag when I click an element (regular link or anything else that is made clickable using javas

3条回答
  •  情话喂你
    2020-12-17 22:45

    I use detection if the device support touch like modernizer. i fill a var called touchClick with the options 'click' or 'touchend' bases on the outcome if it is a touch device or not. In jquery I simply call:

     $('element').on(touchClick, function(e){ //do something });
    

    It has a very small footprint.

提交回复
热议问题