the function for the jquery ready method will run any methods that it contains as soon as the DOM is ready code example
Example 1: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 2: dom ready js
document.addEventListener("DOMContentLoaded", function() {
// code
});