Secret Orange Web Log

jQuery shorthand for $(document).ready()

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
});