Vidyalelo
JavaScript · Q42

Caching And Debugging

Programming · JavaScript · question 42

Q42

Which handler is triggered when the content of the document in the window is stable and ready for manipulation?

A.
onload
Answer
B.
manipulate
C.
create
D.
none of the mentioned

Answer: Option A

Solution

Answer: Option A
Solution:
One of the most important event handlers is the onload handler of the Window object. It is triggered when the content of the document displayed in the window is stable and ready to be manipulated) JavaScript code is commonly wrapped within an onload event handler.