I’ve this in a page
$(".dsd").click(function(){
When i used firebug,it gives me this error
$(".dsd").click is not a function
What is this?
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.
This could be due to a conflict with some other client framework you might be using which has hijacked the
$function. Take a look atjQuery.noConlictfor possible solutions about how you could use jQuery with other frameworks.