Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/10/2006, 12:44
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 10 meses
Puntos: 17
function verImg(imagen) {
var i = new Image();
i.src = imagen;
i.onload = function() {
alert('Ancho:' + this.width+'px; Alto: '+ this.height+'px');
}
}