up vote 1 down vote favorite
share [g+] share [fb]

I am auto generating selectors and ive ran into a problem. some attribute selectors dont work. for example, on this page the following selector does not work as expected:

$("img[src=/p/aost/logo?logo_id=1238551994]");

I also noticed that I cant select a <form> using the value of the action attribute.

Question: Is there a full list somewhere of attributes that do not work in jquery selectors.

Not the question: I am not asking how to select elements with those attributes using jquery functions.

Thank you.

link|improve this question

feedback

2 Answers

$("img[src='/p/aost/logo?logo_id=1238551994']");

Quote the string when you have non-alphanumeric characters, I think you have the same problem in the action url.

link|improve this answer
this does not work, at all. for example, in the page above, i have a form with action=list. this selector returns 0 elements: $("form[action=list]"); – mkoryak Apr 13 '09 at 13:26
feedback
up vote 1 down vote accepted

this was answered in another question here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.