I need to reask my old question, I probably shouldnt have asked it at 1am :P
It seems that some attributes are not being found using jquery's attribute selector:
$("*[some=value]");
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?
Thanks again!
Edit: No one seems to believe that some selectors do not work as expected. Look at this example: On this site (which has jquery 1.3 on it for firebugging) there is a form that looks like this:
<form style="display: inline;" method="get" action="list">
(its around the 'search current downloads' dropdown). If you open firebug and try this selector:
$("form[action=list]");
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:
<img alt="Logo" src="/p/aost/logo?logo_id=1238551994"/>
The selector which does not work is:
$("img[src=/p/aost/logo?logo_id=1238551994");
Sure, i can do wildcard matches, that is not what i am after.