Tema: onended
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/07/2013, 03:20
Avatar de ipraetoriux
ipraetoriux
 
Fecha de Ingreso: abril-2010
Ubicación: ipraetoriux.com
Mensajes: 1.125
Antigüedad: 14 años
Puntos: 155
Respuesta: onended

podes hacer algo asi...

Código Javascript:
Ver original
  1. window.onload = playVideo;
  2.  
  3. function playVideo(){
  4.     var video = document.getElementById('video');
  5.     video.play();
  6.     video.addEventListener('ended',function(){
  7.         location.href= 'http://www.tupagina.com/pagina2';
  8.     }, false);
  9. }