I have a <h2>
with this style:
<h2 style="color='#ccc'; font-size='12px'; margin='10px';"></h2>
How can I select that just with 1 property ? like this: $("h2[style=color='#ccc']");
I can do that with all property, like this:
$("h2[style='color=#ccc; font-size=12px; margin=10px;']");
But I want to select via just one property (color), is it possible ?