Question

I'm using jQuery Validation Engine to validate my from.

I want to hide error message of a specific control manually.

$('#formID1').validationEngine('hideAll');

This hides all the error popups . How can I do this?

Was it helpful?

Solution

use hide instead of hideAll, and the id of the "control" instead of the form as selector.

as stated in doc,

The hide method can be applied to a form or a field. It closes/hides error prompts.

so

$('#yourSpecificControl').validationEngine('hide');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top