I saw there is an answered question about whether there is a difference between using $(document).ready(function(){})
and $(function(){})
(there is
You can use either, $(function() {})
is just a shortcut that does exactly the same thing.
Personally, I prefer $(function() { })
because...well, I type it a lot, and it's much quicker.
I see a lot of questions of why $(document).load()
doesn't work and such because they're not using the right event...I also think$(func)
takes some ambiguity out, to me. Do whichever you prefer, what's clearer to you and your team is the best choice here.