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');
});
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?!