What is the Equivalent of jQuery Document Ready in Vanilla JS?

jQuery has a built-in method named ready() to fire once the document is loaded successfully. We can achieve the same without jQuery too. Here, I shared some methods to trigger events when the page is loaded using vanilla JavaScript. It is the same as document ready method in jQuery.

3 Methods for Document Ready Vanilla JavaScript

1. Using addEventListener Method for Document Ready Without jQuery

We can use the addEventListener() method to call your methods once the HTML page is loaded successfully.

2. Using onreadystatechange

This method is similar to the above method but works slightly differently.

3. Using Custom Function

We can combine the above two methods to create a function that we will be called once the application is loaded.

References:

  1. https://stackoverflow.com/questions/2304941/what-is-the-non-jquery-equivalent-of-document-ready