attributes not selectable by jquery attribute selector - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T14:16:15Zhttp://stackoverflow.com/feeds/question/742964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/742964/attributes-not-selectable-by-jquery-attribute-selector1attributes not selectable by jquery attribute selector mkoryak2009-04-13T03:27:59Z2009-04-13T19:57:06Z
<p>I am auto generating selectors and ive ran into a problem. some attribute selectors dont work. for example, on <a href="http://dogself.com/telluriumTest/index2.htm" rel="nofollow">this page</a> the following selector does not work as expected:</p>
<pre><code>$("img[src=/p/aost/logo?logo_id=1238551994]");
</code></pre>
<p>I also noticed that I cant select a <form> using the value of the action attribute. </p>
<p><strong>Question:</strong> Is there a full list somewhere of attributes that do not work in jquery selectors.</p>
<p><strong>Not the question:</strong> I am not asking how to select elements with those attributes using jquery functions.</p>
<p>Thank you. </p>
http://stackoverflow.com/questions/742964/attributes-not-selectable-by-jquery-attribute-selector/743014#7430144Answer by zalew for attributes not selectable by jquery attribute selector zalew2009-04-13T04:06:17Z2009-04-13T04:06:17Z<pre><code>$("img[src='/p/aost/logo?logo_id=1238551994']");
</code></pre>
<p>Quote the string when you have non-alphanumeric characters, I think you have the same problem in the action url.</p>
http://stackoverflow.com/questions/742964/attributes-not-selectable-by-jquery-attribute-selector/745153#7451530Answer by mkoryak for attributes not selectable by jquery attribute selector mkoryak2009-04-13T19:57:06Z2009-04-13T19:57:06Z<p>this was answered in <a href="http://stackoverflow.com/questions/744523/attributes-not-found-by-jquery-attribute-selector">another question here</a></p>