Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/12/2005, 09:42
Avatar de hunab
hunab
 
Fecha de Ingreso: febrero-2005
Ubicación: Barcelona
Mensajes: 133
Antigüedad: 19 años, 2 meses
Puntos: 1
bueno depende del navegador, aqui te pongo una funcion generica:
Código PHP:
function getBrowserHeight(){
    if (
window.innerHeight) return window.innerHeight;
    else if (
document.documentElement && document.documentElement.clientHeight != 0) return document.documentElement.clientHeight;    
    else if (
document.body) return document.body.clientHeight;
    return 
0;

__________________
Marcio Barrios
marciobarrios.com // artículos sobre estándares y desarrollo web