I am trying to redirect to a different URL after a html video has ended. This cannot be using a FLASH player as it won\'t work on iOS devices. Any help or direction will be
set the id of your video to 'myvid' and here is the solution
video = document.getElementById('myvid');
video.addEventListener('ended',function() {alert('video is ended');
window.location.href = 'http://www.google.com';})