Possible Duplicate:
jQuery $( function() {} ) and $(document).ready the same?
Do you know which one is better and why?
The first one;
$(document).ready(function() {
// your code
});
The second One :
$(function() {
// your code
});
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.
It doesn’t matter. I’m more of a fan of the 2nd case because its easier to type.
This is what the function does internally.