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