Let's say I have multiple boxes among each other:
<div style="width: 100%; height: 100px; background-color: red">
stuff
</div>
If I click (touch) on them, I can easily change the background color with CSS (:hover, :focus) or with Javascript/jQuery.
For the user experience, I want to communicate to the user that he can click on that box as soon as his finger touches the screen. When the user is touching the box with the intention to scroll down, the box should change its background color slightly.
Every jQuery event for clicking or touching an object triggers only if I directly 'click' on it, not when I touch it while scrolling.
How can I listen for a screen touch, if it is not a direct click? Since it should only change the background color, it doesn't matter if it is pure CSS or javascript.