Using jQuery 2.1.0 and jQuery.ui 1.11.0 Tested in iOS 7. iPhone and iPad Mini. Works on android and regular browsers.
We recently upgraded from
Use fastclick.js it will solve this problem. I know this js is used for removing 300ms tap delay but it solved this problem also for me.
Download the minified version of FastClick (alternatively, you can follow the instructions for installing the non-minified version here)
Include the file in your project:
Attach the FastClick object to the document after FastClick has been loaded:
var attachFastClick = Origami.fastclick;
attachFastClick(document.body);
NOTE: If you try using FastClick the non-minified way, i.e:
;
Then use
FastClick.attach(document.body);
but are including the minified file you will receive errors (telling you that FastClick is undefined). If you are using the minified file you must access it through Origami.