Answers for "once script is loaded load function"

4

javascript start function on load

window.onload = function() {
// Your code
};
Posted by: Guest on July-30-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 "once script is loaded load function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language