document load javascriot code example
Example 1: javascript document load
window.addEventListener("load", function(event) {
console.log("Tutte le risorse hanno terminato il caricamento!");
});
Example 2: document load javascript
window.onload = function() {
// Code here
}