what is document.ready function in javascript code example
Example 1: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
Example 2: document ready javascript
$(document).ready(function(){
$("button").click(function(){
$("p").slideToggle();
});
});