jQuery-Validation-Engine icon indicating copy to clipboard operation
jQuery-Validation-Engine copied to clipboard

(hide) hiding all error prompts?!

Open garethwatt opened this issue 6 years ago • 1 comments

I've read the documentation and looked online. when I call validationEngine('hide') on a form element it hides all the form's error messages. It's supposed to just hide the one element's error prompt. I've read the documentation and looked online. I can't work it out?!

jQuery(document).ready( function() {
		// binds form submission and fields to the validation engine
		jQuery("#enquiryForm").validationEngine('attach', { promptPosition: "topLeft" });
	});

$('#m_email').focus(function() {
  $('#m_email').validationEngine('hide');
});	
	

garethwatt avatar Feb 21 '19 14:02 garethwatt

It is a bug. Will fix it soon. Thanks for reporting

dennybrandes avatar Jul 06 '19 14:07 dennybrandes