what's mean $(document) jquery code example
Example 1: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 2: document jquery
$(function(){
// equal to $( document ).ready(function() {
});
$( document ).ready(function() {
console.log( "ready!" );
});
$(function(){
// equal to $( document ).ready(function() {
});