Is there any difference between using:
$(document).ready(function(){
vs.
$(function(){
Does one of these work better than the other in some way, or is the first just a shorthand version of the first?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The latter is the short version of ready handler.
The:
is short version of this:
Both do the same and one task.
jQuery is doing to a good deal with its slogan:
‘Code less, do more’