I'm building new web page and it's supporting ios web application. When i try to open web app, my .delegate method is not firing. It's acting like i'm clicking <a href='#'></a>
. Going to top of the page and method is not firing.
What i've done so far is
$(document).delegate("a[data-what='voteThis']", "click", function (e) {
e.preventDefault();
.
.
.
});
And my html code is
<a href='#' data-what='voteThis' id='vote" + id + "'> vote </a>
i've tested on Android and there is no problem with it. Also i've tested Chrome and Safari browsers on Ios, and there is no problem with them. Only on ios web app makes problem.