If I want to select every image which it\'s alt is Home for example, I can do something like this:
$(\"img[alt=\'Home\']\")
But how can I s
I had a similar issue. Ended up writing a plugin to select elements based on their computed style.
https://github.com/MikeCostello/query-declaration
jQuery $(":style({ width: 750px})")
$(":style({ width: 750px})")