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