jQuery - How to select all elements with a set font-family applied to them?
Posted
by Scott Cariss
on Stack Overflow
See other posts from Stack Overflow
or by Scott Cariss
Published on 2010-06-15T10:53:44Z
Indexed on
2010/06/15
11:12 UTC
Read the original article
Hit count: 159
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?
© Stack Overflow or respective owner