1 2 var iniTest = function (msg) {3 if (null != document.getElementById('ini-test') ) {4 alert('Documento inicializado - '+msg);5 } else {6 alert('Documento NO ESTÁ inicializado - '+msg);7 }8 }9 10 iniTest('directamente en el js');11 12 window.addEventListener('load', function(event){13 iniTest('En el evento window.load');14 }, true);15 16 document.addEventListener('load', function(event){17 iniTest('En el evento document.load');18 }, true);19 20
Enlace
El enlace para compartir es: