jquery on ready code example

Example 1: jquery document ready

// 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() {
  // code
});

Example 4: jquery on document ready

$( document ).ready(function() {
    console.log( "ready!" );
});

Example 5: jquery doc ready

// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
    console.log( "ready!" );
});

Example 6: jquery on ready

$(function() {
    console.log( "ready!" );
});

Tags:

Misc Example