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 ?

