In my application i am running $(document).ready( twice on on the same page is there going to be a conflict between them?
Thanks in Advance,
Dean
In my application i am running $(document).ready
Share
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.
Nope. jQuery events are stacked upon each other and will be executed one by one.
From the jQuery docs on bind():