Hi,   Can you try this?! For example: <video src="video.ogv" id="myVideo"> video not supported </video> <script type='text/javascript'> document.getElementById('myVideo').addEventListener('ended',myHandler,false); function myHandler(e) { // What you want to do after the event // ajaxRequest(...); } </script> http://stackoverflow.com/questions/2741493/detect-when-an-html5-video-finishes   Best regards.