js wait for document to be ready code example
Example 1: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
Example 2: javascript wait for document load
document.addEventListener("DOMContentLoaded", function(event) {
//do work
});