What is the difference between these jQuery code structures, or is there no difference.
Are they both an alias for $(document).ready(function(){ and if so, why the dollar in the first code snippet?
jQuery(function($){
// stuff
});
AND
$(function() {
// stuff
});