javascript load after page load code example
Example 1: JavaScript that executes after page load
document.addEventListener("DOMContentLoaded", function(){
});
window.addEventListener("load", function(){
});
Example 2: javascript document load
window.addEventListener("load", function(event) {
console.log("Tutte le risorse hanno terminato il caricamento!");
});
Example 3: window.onload execute after load page
window.onload = function() {
setTimeout(loadAfterTime, 5000)
};
function loadAfterTime(){
document.getElementById("menu").style.display="block";
}
Example 4: call javascript function after page load complete
$(document).ready(function() {
alert("hi 1");
});
$(window).load(function() {
alert("hi 2");
});
Example 5: wait for page load js
window.addEventListener('load', function () {
})
Example 6: html tag run only after whole page is loaded
<body onload="script();">
<!-- will call the function script when the body is load -->