Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/07/2002, 08:39
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes
Puntos: 61
Re: CÓMO puedo redireccionar a una resolución ??

Perdona, lo anterior tenía algún fallo. Este está bien!

Código:
<html>
<head>
<title>Bienvenido</title>
</head>
<body>
<script>

var seiscientos="index600.html";

var ochocientos="index800.html";

var mil="index1024.html";


if (screen.width==640){window.location.replace(seiscientos)};
if (screen.width==800){window.location.replace(ochocientos)};
if (screen.width>1023){window.location.replace(mil)};
</script>
</body>
</html>