JSFiddle - React, Tailwind, and code Playground

HTML

<video id="vid" width="320" height="240" controls="controls">
   <source src="http://www.w3schools.com/html5/movie.mp4" type="video/mp4">
    <source src="http://www.w3schools.com/html5/movie.ogv" type="video/ogg">
  Your browser does not support the video tag.
</video>

JavaScript

function playVid(){
   $('#vid').get(0).currentTime=5;
   $('#vid').get(0).play()
}

$(window).load(function(){
  playVid();
});