I have some labels on my html page, I use them for validation errors, If all the input data is right then I hide those labels, and if not, showing accordingly. I want, if any of the label is shown then, disable the submit button.
Asked
Active
Viewed 174 times
3 Answers
3
try this
if($('label:visible').length)
{
//disable the submit button here
}

YogeshWaran
- 2,291
- 4
- 24
- 32
1
try :visible
to check if it is not hidden and length()
to count the elements
if($('label:visible').length)..

bipen
- 36,319
- 9
- 49
- 62