There is no "list" of unsupported attributes because there shouldn't be; this is a bug in jQuery.
Here are the open tickets on this:
- Can not select a form using the action attribute
- attr "action" of form and Selectors' attribute filter
- selector by attribute "src" not working the same way as in 1.2.6
Apparently the common denominator between the bugs is that it jQuery is comparing them the selector string you specify against the full URL as opposed to the actual action/src attribute as it is defined in the HTML.
Workaround? You can probably use This explains why the attributeEndsWith or the attributeContains selector if you must select the form by its action selectors do work in this case.
I would recommend just giving it the form/image a class/ID and getting it over with.
