jquery-standards

$(document).ready() or $(function()) -- Which to use?

I saw there is an answered question about whether there is a difference between using $(document).ready(function(){}) and $(function(){}) (there isn't), but my question is which is the preferred syntax and why. I've been using jQuery for about a year and have always used the $(document).ready() syntax; but lately on SO and in some other...