I have some code I am trying to run once my image has finished loading. I use this following jQuery code:
$("#myimageid").load(function() {
alert('Image Loaded');
});
However the popup never show up. I can't get the .load() function to work ! Anyone had issues with this?
See Question&Answers more detail:os