naif-sameer/my-issues

Make HTML5 video stop at indicated time

Opened this issue · 0 comments

video.addEventListener("timeupdate", function(){
    if(this.currentTime >= 5 * 60) {
        this.pause();
    }
});

stackoverflow