Answers for "js on page fully loaded"

1

content of page fully loaded javascript

document.addEventListener('DOMContentLoaded', (event) => {
    console.log('DOM completely loaded and analyzed');
});
Posted by: Guest on February-15-2021
2

js on page loaded

window.onload = function() {
  yourFunction(param1, param2);
};
Posted by: Guest on April-02-2021
1

javascript - How to execute a function when page has fully loaded?

That's called load. It came waaaaay before DOM ready was around, and DOM ready was actually created for the exact reason that load waited on images.

window.addEventListener('load', function () {   alert("It's loaded!") })
Posted by: Guest on December-24-2021

Code answers related to "js on page fully loaded"

Code answers related to "Javascript"

Browse Popular Code Answers by Language