Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 291 Bytes

File metadata and controls

22 lines (17 loc) · 291 Bytes

Section 5.2: jQuery 2.2.3 and earlier

These are all equivalent, the code inside the blocks will run when the document is ready:

$(function() {
  // code
});

$().ready(function() {
  // code
});

$(document).ready(function() {
  // code
});

jQuery(function() {
  // code
});