ColdFusioning.com
My personal blog about ColdFusion, code, Google, & computers...
ColdFusioning: Pronunciation \kold-fy�-zhn-ing\ Noun: The action of one that writes ColdFusion.
jQuery Document Ready Shortcut
Here's a quick tip. Instead of writing:
$(document).ready(function() {
// Code and functions here
});
We can instead write:
$().ready(function() {
// Code and functions here
});
or even:
$(function() {
// Code and functions here
});
Albeit, it isn't a huge code reduction but it is a nice shortcut.

We never know who will need to work on our code and I strive to make sure that my code is easy to understand and 'figure out' even if you do not know exactly what is going on.
Nothing more than that really.