Image Object
$('#targetImg').bind('load',function(event){
// ...
$(this).unbind(event);
});$('#targetImg').once('load', function(){
//...
});window.onload = function(){};
참조 문서
Last updated
$('#targetImg').bind('load',function(event){
// ...
$(this).unbind(event);
});$('#targetImg').once('load', function(){
//...
});window.onload = function(){};
Last updated
var img = new Image();
img.onload = function(){
var imgW = img.width;
var imgW = img.height;
};
img.src = 'image_path';