Остановить видео jQuery
$('#playButton').click(function(event){
$('#theVideo').get(0).play();
setTimeout(function(){
$('#theVideo').get(0).pause();
$('#theVideo').get(0).currentTime = 0;
}, 7000);
});
Helpful Hare