20/02/2002, 17:33
|
| | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 889
Antigüedad: 23 años Puntos: 4 | |
Re: pagina de inicio maximizada Hola joseagu!
Prueba a poner este script dentro del <body>:
<script>
width = screen.width;
height = screen.height;
if (document.all) {
ancho = document.body.clientWidth;
altura = document.body.clientHeight;
} else {
ancho = window.innerWidth;
altura = window.innerHeight;
};
if (((ancho +500 ) < width ) || ((altura + 300) < height)){
window.resizeTo(width,height);
window.moveTo(0,0);
};
</script>
Espero que eso te sirva.
saludos de mi parte ;) |