html5 listener loadeddata do not work certain
html, javascript
Solution
After two days searching I found the solution. To fire the events there has to be a video.load() before. The loop and the autoplay-tags in the html-video-markup aren't enough.
Problem
I' am desperated. Why this works: ``` var myVid=document.getElementById("movie"); myVid.onloadeddata=console.log("Browser has loaded the current frame"); ``` and this do not: ``` myVid.addEventListener("loadeddata", function() { alert("loadeddata"); }); ``` tried both in firefox 27. her my page where it shout run: www.x.opteynde.com My target is to get the loading-time of the video.