I using touchend event in UIWebView follows:
window.ontouchend=function(touchEvent)
{
...
}
I use it to track the scroll inside UIWebView and this event normally work in iOS 5+, but this event does not work in iOS 4! How I can track touchend event in javascript in iOS 4?
Thank you in advance for your help.