I need a way for jQuery to return all elements that have the css
font-family:AvantGardeITCbyBT-Bold, sans-serif;
applied to them.
I’m thinking the only way of doing this is looping through all elements and checking if this css is applied to it. Seems a slow way of doing it?
Is there a way of doing this via a jQuery Selector?
well, you can extend the jQuery selectors with
and then call
or
for instance.
working example: http://jsbin.com/idova3/edit