document.querySelector('img.my-image').addEventListener('load', function(){ // The image is ready! });
document.querySelector('#my_area').addEventListener('load', function(){ aTestFunction(); }); function aTestFunction(){ return "called"; }