attributes not found by jquery attribute selector - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:13:18Z http://stackoverflow.com/feeds/question/744523 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/744523/attributes-not-found-by-jquery-attribute-selector 5 attributes not found by jquery attribute selector mkoryak 2009-04-13T16:41:38Z 2009-04-13T17:11:38Z <p>I need to <a href="http://stackoverflow.com/questions/742964/attributes-not-selectable-by-jquery-attribute-selector">reask</a> my old question, I probably shouldnt have asked it at 1am :P</p> <p>It seems that some attributes are not being found using jquery's attribute selector:</p> <pre><code>$("*[some=value]"); </code></pre> <p>So far it seems that i cant use form's action attribute, and img's src attribute. Is there a list somewhere of attributes that do not work so i can write custom selectors for them?</p> <p>Thanks again!</p> <p><hr /></p> <p><strong>Edit:</strong> No one seems to believe that some selectors do not work as expected. Look at this example: On <a href="http://dogself.com/telluriumTest/index2.htm" rel="nofollow">this site</a> (which has jquery 1.3 on it for firebugging) there is a form that looks like this:</p> <pre><code>&lt;form style="display: inline;" method="get" action="list"&gt; </code></pre> <p>(its around the 'search current downloads' dropdown). If you open firebug and try this selector: </p> <pre><code>$("form[action=list]"); </code></pre> <p>you will NOT be able to select the form. There is nothing special about the action attribute. Same goes for the src of the logo image on that page:</p> <pre><code>&lt;img alt="Logo" src="/p/aost/logo?logo_id=1238551994"/&gt; </code></pre> <p>The selector which does not work is:</p> <pre><code>$("img[src=/p/aost/logo?logo_id=1238551994"); </code></pre> <p>Sure, i can do wildcard matches, that is not what i am after.</p> http://stackoverflow.com/questions/744523/attributes-not-found-by-jquery-attribute-selector/744552#744552 3 Answer by Seb for attributes not found by jquery attribute selector Seb 2009-04-13T16:49:38Z 2009-04-13T16:49:38Z <p>It all depends on which jQuery version you're using.</p> <p>Before 1.3, you could use @ notation:</p> <pre><code>$("*[@name=value]") </code></pre> <p>So maybe adding @ helps.</p> <p>Other than that, you should enter the attribute value <strong>exactly</strong> the same as it's defined in the markup - e.g. if you're trying to find an image with <code>src="http://example.com/dog.jpg"</code>, don't do this because it won't work:</p> <pre><code>$("img[src=dog.jpg") </code></pre> <p>as it will be trying to find images with src <strong>equal</strong> to "dog.jpg", not containing it.</p> <p>If you want to search attributes defining only parts of it, I'd suggest reading the <a href="http://docs.jquery.com/Selectors" rel="nofollow">jQuery API Selectors</a> page. For example, to get all images whit src <strong>containing</strong> "dog.jpg", you could use:</p> <pre><code>$("img[src*=dog.jpg]") </code></pre> <p>Similarly, you can find elements whose attributes start or end with specific values / strings.</p> http://stackoverflow.com/questions/744523/attributes-not-found-by-jquery-attribute-selector/744601#744601 7 Answer by Paolo Bergantino for attributes not found by jquery attribute selector Paolo Bergantino 2009-04-13T17:04:44Z 2009-04-13T17:11:38Z <p>There is no "list" of unsupported attributes because there shouldn't be; this is a bug in jQuery. </p> <p>Here are the open tickets on this:</p> <ul> <li><a href="http://dev.jquery.com/ticket/3245" rel="nofollow">Can not select a form using the action attribute</a></li> <li><a href="http://dev.jquery.com/ticket/2662" rel="nofollow">attr "action" of form and Selectors' attribute filter</a></li> <li><a href="http://dev.jquery.com/ticket/4244" rel="nofollow">selector by attribute "src" not working the same way as in 1.2.6</a></li> </ul> <p>Apparently the common denominator between the bugs is that jQuery is comparing the selector string you specify against the full URL as opposed to the actual action/src attribute as it is defined in the HTML. This explains why the <a href="http://docs.jquery.com/Selectors/attributeEndsWith#attributevalue" rel="nofollow">attributeEndsWith</a> or the <a href="http://docs.jquery.com/Selectors/attributeContains#attributevalue" rel="nofollow">attributeContains</a> selectors do work in this case.</p> <p>I would recommend just giving the form/image a class/ID and getting it over with.</p>