Expert Developer JavaScript Question:

What is the difference between window.onload and onDocumentReady?

Tweet Share WhatsApp

Answer:

► The difference is that onDocumentReady is called after the DOM is loaded without waiting for all the contents to get loaded. While window.onload() function waits until the contents of page is loaded.
► Suppose there is very large image on a page, at that time onDocumentReady will wait until that image is loaded totally.
► So while using the window.onlaod() function the execution will be slow, but the onDocumentReady will not wait until the image is loaded.

Download Expert JavaScript Developer PDF Read All 150 Expert JavaScript Developer Questions
Previous QuestionNext Question
What is the method for reading and writing a file in JavaScript?Which boolean operators are in JavaScript?