jquery document ready

209

document ready jquery -

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

jquery document ready -

The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
  // Handler for .ready() called.
});

Which is equivalent to the recommended way of calling:
$(function() {
  // Handler for .ready() called.
});

Comments

Submit
0 Comments