imgLoad() Method
Esegue una funzione all'evento onload sull'elmento img o sulla collezione di elementi img selezionati
// API dBJsArgomenti:
- [function] fn : funzione
Standard sintax
//sintax for element by id
$D('#myElement').imgLoad(function(){
/*
*my fuction code
*/
});
//sintax for elements by class name
$D('.myElements').imgLoad(function(){
/*
*my fuction code
*/
});

