Why doesn’t this work
$('div.note')[0].removeClass('hidden');
I get this error from firebug:
TypeError: note.removeClass is not a function
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.
$('div.note')[0]gives you a javascript object, not a jQuery object, and removeClass is a jQuery method. You need to convert it to a jQuery object before using jQuery methods.Try this,
or