function getMeta(imageUrl){
$('<img/>').attr('src', imageUrl).load(function(){
s = {w:this.width, h:this.height};
alert(s.w+' '+s.h);
});
}
$('<img/>').attr('src', imageUrl).load(function(){
s = {w:this.width, h:this.height};
alert(s.w+' '+s.h);
});
}
No comments:
Post a Comment