jQuery shorthand for $(document).ready()
Monday, December 14, 2009 by Administrator
Have you been using:
$(document).ready(function() {
// Do Stuff Here
});
Did you know you can simply just use the following syntax:
$(function() {
// Do Stuff Here
});
Want to Leave a comment?