JSFiddle - React, Tailwind, and code Playground

by philippkuehn

HTML

<video id="video1" width="480" controls preload="auto" src="http://files.philipp-kuehn.com/1.mp4">
</video>

JavaScript

var nextVideo = "http://files.philipp-kuehn.com/2.mp4";

$('#video1').on('play', function () {
    this.play();
    $(this).on('ended', function () {
        this.src = nextVideo;
        this.play();
    });
});