Reputation: 1984
In my aspx page, am using some validation controls like required field validator, if I click on save button If the particular field is empty, the validation error fires.
And if I fill that particular field and give tab out, that validation error automatically disappears. My query here is, is it possible to display any message using jQuery or anyother method, until the validation error disappears.
Whenever the validation error appears in that page the message should appear, and if we clear the validation error that message should disappear automatically.I dont know how to do this, coz I dont have much knowledge in jQuery.
Can anyone help me here, thanks in advance
Upvotes: 0
Views: 173
Reputation: 1573
It sounds like you're looking for jQuery showErrors(). There's some good information in this post which might answer your question: How can I show errors in jQuery validation?
Upvotes: 1