on documente ready vanilla code example
Example 1: document ready javascript vanilla
document.addEventListener("DOMContentLoaded", function() {
// code
});
Example 2: document ready vanilla js
if (document.readyState === "complete") { init(); }