Discussion :: Javascript - CS
- Which event is triggered sooner when the document and its elements are ready to manipulate?
A.
DOMContentLoaded |
B.
readystatechange |
C.
Both DOMContentLoaded & readystatechange |
D.
None of the mentioned |
Answer : Option C
Explanation :
DOMContentLoaded and readystatechange are alternatives to the load event: they are triggered sooner, when the document and its elements are ready to manipulate, but before external resources are fully loaded.
Be The First To Comment