JSFiddle - React, Tailwind, and code Playground

by unknown601

HTML

<script src="http://www.innovation-laboratories.com/video-js/video.js"></script>
<link rel="stylesheet" href="http://www.innovation-laboratories.com/video-js/video-js.css">
<video id="video-snapcon" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="auto" width="1180" height="559" data-setup="{}">
  <source src="http://www.innovation-laboratories.com/video/intro.mp4" type="video/mp4">

<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>
</div>

JavaScript

var myPlayer = videojs("video-snapcon");
          videojs("video-snapcon").ready(function(){
          this.on("ended", function(){ 
            alert('Here I am');
          });
        });