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!");
});
f62a8065-3d13-4d83-9cab-80fedda1bdc4|2|5.0