Possible Duplicate:
What does the leading semicolon in JavaScript libraries do?
I am reading the jquery flexslider source code and i see a ;
before the document ready call
;(function ($) {...
Can anyone tell me why we need a ; ?
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’s included in case…
the code gets grouped into the same file with other code, and
the other code didn’t include a semicolon at the end.
For example…
Without the semicolon, the
()around the flexslider plugin would have been interpreted as a function call, and would have tried to call the return result of the previous function.