Load Function
by fido3993
HTML
<img src="war.jpg" alt="people" width="304" height="300">
<p>
<b>Noted:</b>
Depending on the browser, the load may not even trigger if the image is cache
</p>
JavaScript
$(document).ready(function() {
$("img").load(function() {
alert("image loaded")
});
});