For those that don’t know this, you can shorthand the following script:
$(document).ready(function () { alert("Giddyup!"); });
… and replace the above with the following equivalent:
$(function () { alert("Giddyup!"); });