I would like to use a jquery to select the following span:
<span id="RequiredFieldValidator1" class="validationerror" style="color: Red; display: none;">*</span>
But not select the following span which differs from the original in that the style attribute has a display property whose value is inline instead of none.
<span id="RequiredFieldValidator2" class="validationerror" style="color: Red; display: inline;">*</span>
I am aware inline styles are evil but an asp.net web forms validator control is generating it and doing a lot of good as well as evil.
Can this be done using jquery selectors? I'm new to jquery.