jquery document ready vanilla javascript 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
});