i have seen a jquery code that contains jQuery.noConflict method.
do not know purpose of it, didnt get the why we need that.
i only understand that it is something related to jquery plugin.
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.
jQuery (and other frameworks like it) store an alias of the jQuery object in the
$variable. It’s just for easy shorthand when you write code.You could actually write all your code like this
jQuery('.selector');instead of using the dollar sign if you wanted to. The no-conflict mode allows you to use other code (usually another framework) that ALSO stores something in the dollar sign variable.