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 found that when I made my binding more specific, it began to work on iOS. I had:
$(document).on('click tap', 'span.clickable', function(e){ ... });
When I changed it to:
$("div.content").on('click tap', 'span.clickable', function(e){ ... });
iOS began responding.