How can I use JQuery to search for elements, that have a specific attribute value, regardless of the attribute tag?
Like:
$("[*='myvalue']")
should find
<a href="target.html" target="myvalue">...
<tr change="myvalue">...
The first one, because of the "target" attribute, the second one for the "change" attribute.
Is there a better solution than just iterate over all attributes?