Vidyalelo
JavaScript · Q65

Server

Programming · JavaScript · question 65

Q65

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.