I have a native video playing in Safari on iPad and I can't move the scrubber (video position selector). This is the code for the video.
<video id="video-area" controls>
<source src="videos/person.mp4" type="video/mp4">
</video>
There's a lot of code within the project, but I've narrowed down the code that interferes with the seeking to the code I use to prevent overscrolling (bouncing) on Safari is preventing me from seeking.
document.ontouchmove = function(event){
event.preventDefault();
}
Is there a way I can stop that code from interfering with the video, and keeping my screen from over-scrolling?