07/09/2005, 10:38
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 5
Antigüedad: 19 años, 4 meses Puntos: 0 | |
es muy simple si queres redireccionar depende la resolucion:
<script>
if (screen.width=="1024" && screen.height=="768") {
document.location.href="tu_pagina.html";
}
if (screen.width=="800" && screen.height=="600") {
document.location.href="tu_pagina2.html";
}
</script> |