on ready jquery code example
Example 1: jquery document ready
$(document).ready(function() {
});
Example 2: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
});
Example 3: jquery on document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 4: jquery doc ready
jQuery( document ).ready(function() {
console.log( "ready!" );
});
Example 5: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 6: jquery document ready
The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
});
Which is equivalent to the recommended way of calling:
$(function() {
});