You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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');
});
The text was updated successfully, but these errors were encountered:
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?!
The text was updated successfully, but these errors were encountered: