JQuery
$("link, script, style, a, img").each(function(){
$(this).load(function(){
});
});
Not quite sure if this is what you want, since your question is not very clear, but you can associate something with a load event for each of these types of elements.
source
share