I\'ve looked through a couple of questions to find out if an HTML5 element is playing, but can\'t find the answer. I\'ve looked at the W3 documentation and it has an event n
a bit example when playing video
let v = document.getElementById('video-plan'); v.onplay = function() { console.log('Start video') };