Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to get image height after image has loaded. The reason for that is chrome gets false height values because it gets height before image has loaded.

var imgHeight = $("#pic25").height();

Note: I shouldn't use $(window).load(function(){ on this one.

How can I do that ?

share|improve this question
do something about your accept rate. 52% not good. – Jai Jan 3 at 7:15

2 Answers

up vote 2 down vote accepted
$("img#pic25").load(function(){
  var height = $(this).height();
});
share|improve this answer

you need to use onload(.load()) event since load event will be called only after the DOM and associated resources like images got loaded, so it work properly

$(body).load(function(){
  var height = $("#pic25").height();
});

this would work

to check particular image to be load you can do this like @arvind answers code

share|improve this answer
but you should attach this event handler to the "#pic25".. this will only trigger when "body"'s loaded :9 – Zlatan O. Jan 3 at 7:08
@Zlatan yah that would be hady if we only need to check only selected image to load not all – NullPoiиteя Jan 3 at 7:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.