30/06/2005, 11:07
|
| | Fecha de Ingreso: junio-2005
Mensajes: 2
Antigüedad: 19 años, 6 meses Puntos: 0 | |
esto te da las dimensiones de la venta cliente es decir lo que realmente vemos sin barras de herramientas , estado y marcos
function dimensionventana() {
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement &&
( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
window.alert( 'Width = ' + myWidth );
window.alert( 'Height = ' + myHeight );
}
espero que te ayude y sea lo que pides un saludo |