How to select all input with given name if name contains [ and ]?
$('input[name=field_name[array_key]]').removeClass('selected');
Console:
Uncaught Syntax error, unrecognized expression: [name=field_name[array_key]]
Thank you for answers!
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.
Put the
namevalue in quotes:As stated by the jQuery docs:
Here’s a live example of the above code.