I have a scrollable list on a mobile device. They want people to be able to scroll the list via swiping, and also select a row by tapping.
The catch is combining th
jQuery Mobile has a .tap() event which seems to have the behavior you'd expect:
The jQuery Mobile tap event triggers after a quick, complete touch event that occurs on a single target object. It is the gesture equivalent of a standard click event that is triggered on the release state of the touch gesture.
This might not necessarily answer the question, but might be a useful alternative to some.