After using this particular script:
<script>
myVid=document.getElementById("video1");
myVid.oncanplay=alert("Can start playing video");
</script>
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_av_event_canplay
A notification window appears when the video is ready to play.
I am hoping to modify the appearance of a div container once the video begins playing (such as dimming the background). Is it possible to achieve this with the play event?
Best regards,
Torsten