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 ▸

Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?


How are objects created in arrays


What is the difference between global and local variables?