document ready in javascript code example
Example 1: jquery document ready
$(document).ready(function() {
});
Example 2: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 3: dom ready js
document.addEventListener("DOMContentLoaded", function() {
});
Example 4: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
});
Example 5: jquery doc ready
jQuery( document ).ready(function() {
console.log( "ready!" );
});
Example 6: document. ready
$( document ).ready(function() {
console.log( "ready!" );
});