do i run document.ready in html or js code example
Example 1: dom ready js
document.addEventListener("DOMContentLoaded", function() {
// code
});
Example 2: documentready
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});