I want to prevent the scrolling on a safari web page for iphone by binding the preventDefault method on the document element of the DOM, and it works on every elements but the video tag.
document.addEventListener("touchmove", function(e){e.preventdefault();}, false);
I've tried attaching the event to the video tags, but it seems as if nothing is attached or the events are simply not triggered.