InterviewSolution
Saved Bookmarks
| 1. |
Which is the alternative to the load event?(a) readychange(b) changestate(c) readystatechange(d) contentloader |
|
Answer» Right option is (c) readystatechange The explanation is: 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. |
|