How do you remove the click/tap delay from mobile Safari on iOS?
I have fiddled around with event listeners quite a bit, and have used a bunch of different scripts (
This is working for me. Whenever a new page is added into the dom, we can then attach fast click to all the links...
// when new pages are loaded into the DOM via JQM AJAX Nav, apply ko bindings to that page's DOM
$(document).on('pageinit', '.ui-page', function (event, data)
{
var activePage = $(event.target).get(0);
FastClick.attach(activePage);
});