attributes not selectable by jquery attribute selector - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T14:16:15Z http://stackoverflow.com/feeds/question/742964 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/742964/attributes-not-selectable-by-jquery-attribute-selector 1 attributes not selectable by jquery attribute selector mkoryak 2009-04-13T03:27:59Z 2009-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 &lt;form&gt; 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#743014 4 Answer by zalew for attributes not selectable by jquery attribute selector zalew 2009-04-13T04:06:17Z 2009-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#745153 0 Answer by mkoryak for attributes not selectable by jquery attribute selector mkoryak 2009-04-13T19:57:06Z 2009-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>