I have several elements in this way <td class="sede_co.uk">
I want to reference them using jquery this way:
$(td.sede_co.uk)
but jquery doesn’t “find” them because (I guess) the point between “co” and “uk”.
Any idea?
Regards
Javi
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.
You should fix the invalid class name…but to query for it as is, escape the
.:You can test it here. Please do fix the class though,
.isn’t a valid character in a class name…it’ll cause fewer headaches.