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