JSFiddle - React, Tailwind, and code Playground
by velthune
HTML
<video autobuffer controls autoplay>
<source id="mp4" src="http://grochtdreis.de/fuer-jsfiddle/video/sintel_trailer-480.mp4" type="video/mp4">
</video>
JavaScript
$("video").bind('ended', function(){
console.log("asd");
$("video").fadeOut(2000,function(){
$("video").remove();
});
});