1

DOM Ready without JavaScript Frameworks

 1 year ago
source link: https://siongui.github.io/2012/10/04/dom-ready-without-javascript-frameworks/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

DOM Ready without JavaScript Frameworks

October 04, 2012

"DOM ready" is an important event because HTML elements like div or span can be accessed by JavaScript only when DOM is ready enough. Usually we can initialize web application at "DOM ready" time. Various JavaScript frameworks provide DOM ready event [1]. Here, I want to discuss how to detect "DOM ready" in a cross-browser way without using JavaScript Frameworks.

  1. Put and include JavaScript code right before the end of body tag:

    This is simplest way to make sure DOM is ready when any JavaScript code is run. You do not have to write any code to detect whether DOM is ready, or reply on any "DOM ready" event of JavaScript frameworks. And your website will make users feels more responsive because users can see something on the browser screen before JavaScript code is run.

  1. Check the readiness of last DOM element:

    If for some reason you don't want to put and include your JavaScript code before the end of body tag, here is an alternative - Check the readiness of last element inside body tag. The following JavaScript code snippet demonstrates how (assume the id of last element is lastElement):

    checkDOMReady();
    
    function checkDOMReady() {
      if (document.getElementById('lastElement')) {
        // DOM is ready now. Do something here.
      }
      else setTimeout(checkDOMReady, 50);
    }
    

    As you can see, a function is setup to access the last element. If the last element is not accessible, then the function sleep 50 ms and checks again until the last element is accessible. The checking interval (50 ms) could be made shorter if you like. In fact, you can check the last element referenced in your code instead of last element inside body tag if you want JavaScript code runs earlier.

Hope the above information is helpful for vanilla JavaScript lovers.


References:

[2]Javascript DOM ready without an entire framework[3]Relying on DOM readiness to invoke a function (instead of window.onload)


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK