I'm trying to find all elements that have a filter style applied to them from a CSS file.
For instance
.fourty {
filter:alpha(opacity=40);
}
.fifty {
filter:alpha(opacity=50);
}
.sixty {
filter:alpha(opacity=60);
}
How would I capture those elements?