Hi all,
I have an image <img id='my_img' src='img1.png'>
and a button.
Clicking the button does the following:
$('#my_img').attr('src','img2.png')
This second image (img2.png) is fairly large, and I want to know when it is fully loaded (i.e. .load() event). I tried to use .live, .bind, and .complete but none seem to fire.
Any ideas?
Thanks! Amit