removing the onclick delay for webapps for android
问题 Hi i'm building a webapp. To remove the onclick delay i found this script on http://cubiq.org/remove-onclick-delay-on-webkit-for-iphone The code is bascically- function NoClickDelay(el) { this.element = el; if( 'ontouchstart' in window ){ console.log("===================touch supported :P") this.element.addEventListener('touchstart', this.handleEvent, false); } } NoClickDelay.prototype = { handleEvent: function(e) { switch(e.type) { case 'touchstart': this.onTouchStart(e); break; case