| |||
boton que te lleve a un sitio y en x tiempo se redirija a otro Hay alguna manera de hacer que al pulsar un boton te lleve a un sitio, y en x tiempo te lleve a otro? |
| ||||
Respuesta: boton que te lleve a un sitio y en x tiempo se redirija a otro se puede hacer algo asi con php, pero me parece mas factible con javascript.
Código Javascript:
Ver original |
| |||
Respuesta: boton que te lleve a un sitio y en x tiempo se redirija a otro No funciona me sale esto: [IR A]boton = document.getElementById("envia"); boton.onclick = function() { window.location.href = "http://google.com/"; }; // y en la pagina que quieres que te envie a otra window.onload = function() { setTimeout(function(){ window.location.href = "http://google.com/"; }, 5000); }; Por cierto quiero que vaya a una pagina que no es mia(por lo que no la puedo modificar) y luego ir a una pagina que si que es mia |
| ||||
Tema movido desde PHP a Javascript |
Etiquetas: |