I have a scrollable list in my web application using scrollability to work with the overflow:scroll function. although when I finish scrolling and pull my finger out of the screen, the event may also fire.
$('li').live('touchend', function (e) {
The fact is that I would only like this event to be higher, to shoot when the action there did not concern the event before that.
can I exclude touchend event from inside touchmove event? so does it better mimic iOS UITableView component? where when starting touchmove it cancels the target for touchend
source share