when document is ready javascript code example
Example 1: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 2: dom ready js
document.addEventListener("DOMContentLoaded", function() {
// code
});
Example 3: document ready javascript
$(document).ready(function(){
$("button").click(function(){
$("p").slideToggle();
});
});
Example 4: document.ready
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});