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.

link|improve this question

50% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Try something like this:

$('.validationerror:hidden')
link|improve this answer
1  
Thank you! This helped me figure out how to select the first hidden tr element in a table. Actually, what surprises me is that the hidden selector works for the display attribute. I'd assumed that it was for the visibility attribute only. – Jagd Jan 18 '11 at 0:37
feedback
$("span[style*=inline]")

will select all span elements with the style attribute which has the value "inline" in it somewhere.

link|improve this answer
Thanks for your quick response you actually answered my question as asked but the other solution was more elegant. – Craig McKeachie Apr 15 '09 at 14:08
This doesn't work <html><head></head> <body> <script type="text/javascript" src="ajax.googleapis.com/ajax/libs/jquery/1.3.2/…; <script type="text/javascript"> $(document).ready(function(){ alert($("span[style*=inline]").length); } ) </script> <span id="RequiredFieldValidator2" class="validationerror" style="color: Red; display: inline;">*</span> </body> </html> – Mike Blandford Sep 3 '09 at 16:23
feedback

here is an advise for selecting server side controls too

document.getElementById("<%=txtFirstName.ClientID %>");

or

$("#'<%=txtFirstName.ClientID %>'");

or

$("[id$='_txtFirstName']");
link|improve this answer
feedback

I do something like this to add\remove an error style to the parent of the validation error control to highlight the control that caused the error and the validation message.

$('input').change(function() {
  $(".validationError[style*=hidden]").parent().removeClass("error");
  $(".validationError[style*=visible]").parent().addClass("error");
});
link|improve this answer
feedback

embed the styles inside the classes and you have 2 class the use JQuery selector

$(".<ClassName>")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.