we have a web application which is using Jquery blockUI to open a pop up and do some action. All of this works fine on Safari, and IE 8. problem is with Ipad. none of the ac
I usually use
.bind("click touchstart", function(){ });
instead of:
.click(function(){ });
That way you are binding the the correct event. It's also quicker, the touch responds much faster than click for some reason.