Created
January 7, 2015 03:43
-
-
Save buithehoa/ade8f30ec12cc2c6e74c to your computer and use it in GitHub Desktop.
JQuery document ready
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
// put all your jQuery goodness in here. | |
}); | |
// OR | |
$(function() { | |
// put all your jQuery goodness in here. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment