What does the document.onload() function do and why is it useful?

The function document.onready() will call code given as an arguement once the Document Object Model is fully loaded. The function is useful because it allows javascript to be called once the page is built ensuring that all elements are built before modifying them with code.

DD

Related Javascript Mentoring answers

All answers ▸

What is the importance of javascript in the web?


What does the following code do and why? console.log(1+"2")


How are objects created in arrays


What is the difference between global and local variables?