![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
13/04/2003, 06:08
|
![Avatar de maestro](http://static.forosdelweb.com/customavatars/avatar16226_1.gif) | | | Fecha de Ingreso: febrero-2002 Ubicación: España
Mensajes: 2.364
Antigüedad: 23 años Puntos: 1 | |
Tambien puedes decidir que pagina mostrar en funcion de la resolucion y asi optimizar los contenidos dependiendo del cliente.
Este seria el script:
<SCRIPT language=javascript>
if ( screen.width == 800)
document.location = "index800.htm";
if ( screen.width == 1024)
document.location = "index1024.htm";
</SCRIPT> |