What is the DOM ready event?

44,111

Solution 1

DOM ready means that all the HTML has been received and parsed by the browser into the DOM tree which can now be manipulated.

It occurs before the page has been fully rendered (as external resources may have not yet fully downloaded - including images, CSS, JavaScript and any other linked resources).

The actual event is called window.DOMContentLoaded.

Solution 2

DOMready means: The DOM structure has been built in browser memory. Asynchronously the page already started rendering, but it might not be finished yet as external resources like images, videos etc. will finish loading later.

Solution 3

I need to fire a script as soon as the page content (the whole HTML element) has been received, but it doesn't have to be rendered yet.

I assume that just having a simple tag that executes some code at the very top of my page should do the trick?

It's likely then that you want the DOMContentLoaded event. You can use it thusly:

    <head>
    <!-- … --->
        <script>
window.addEventListener('DOMContentLoaded',function () {
    //your code here
});
        </script>
    </head>

To formulate the question differently: does DOM ready mean that all elements and resources have been pulled and rendered?

There is no "DOM ready" event. You're probably thinking of jQuery's .ready(), or some similar odd use of this terminology (e.g. Google also has a similarly named proprietary event they refer to).

For the DOMContentLoaded event, however (to quote MDN):

The DOMContentLoaded event fires when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading.

Solution 4

You might also try with the functions

window.onload = function(){
   //your code
  }

or

body.onload = function(){
   //your code
  }

if you don't want to use jQuery.

Be careful though, DOM loaded doesn't mean the page loaded, iframes, javascript, images and css might load after that event.

There is a good tuto on DOM events Javascript tutorial

Share:
44,111
silkAdmin
Author by

silkAdmin

Full stack web developer, Founder @ Nota.io

Updated on January 06, 2022

Comments

  • silkAdmin
    silkAdmin over 2 years

    I need to fire a script as soon as the page content (the whole HTML element) has been received, but it doesn't have to be rendered yet.

    I assume that just having a simple <script> tag that executes some code at the very top of my page should do the trick?

    To formulate the question differently: does DOM ready mean that all elements and resources have been pulled and rendered?

  • silkAdmin
    silkAdmin over 11 years
    @Oded Thanks, so if i want to act of the HTML before it's been parsed into the DOM tree, a plain script tag at the top of the page will work, is that right ?
  • Oded
    Oded over 11 years
    @silkAdmin - You can't work on the HTML before it got parsed into the DOM tree. JavaScript works with the DOM tree, so trying to work with it before it is fully parsed will be tricky - probably impossible (you will most likely be getting errors). What exactly are you trying to accomplish?
  • silkAdmin
    silkAdmin over 11 years
    @Oded, i just want to get the response body as a string and send it to the server. Any ideas on what would be the best way ?
  • Oded
    Oded over 11 years
    @silkAdmin - Best for what? What do you want to optimize for?
  • silkAdmin
    silkAdmin over 11 years
    @Oded,Well hoping to get it as fast and light weight as possible, i figured waiting on DOM ready for not using the DOM would be unnecessary, as i do not need the page to be parsed.
  • Oded
    Oded over 11 years
    @silkAdmin - The best way would be to post the script at the very bottom of the base, just before the </html> tag - this will ensure that all the rest of the page has loaded, DOM ready or not. I am not clear on how you propose to access the content of the page without using the DOM though.
  • silkAdmin
    silkAdmin over 11 years
    @Oded, Ok thanks for the insights, it looks like i am stuck on waiting DOM ready.
  • silkAdmin
    silkAdmin over 11 years
    @Oded, Wait how does GA snippet works then ? I see it does manipulate the DOM and yet doesn't wait on DOM ready. There is a var s = document.getElementsByTagName('script')[0];
  • Oded
    Oded over 11 years
    It "knows" there is at least one script element as it is running within it. The problem with trying to operate on parts of the document before DOM ready is that they may not have loaded yet, causing an error and your JavaScript to stop working.
  • BoltClock
    BoltClock over 9 years
    Your link is missing.
  • Jan Kyu Peblik
    Jan Kyu Peblik over 4 years
    This response is incorrect. There is no such event; it is not either an alias to DOMContentLoaded.
  • Jan Kyu Peblik
    Jan Kyu Peblik over 4 years
    An event listener for 'load' (or DOMContentLoaded or whatever actual event you're interested in) would actually be better with this approach, so you don't have to worry about whether you've already assigned something to the event. window.addEventListener('load',function () { /*...*/ });