I’m using from it https://github.com/posabsolute/jQuery-Validation-Engine
I wonder how to make the prompts should to close themselves by 4 seconds without clicking the prompts to closethe code line is 26 from jquery.validationEngine.js, it looks like:
$(".formError").live("click", function() {
$(this).fadeOut(150, function() {
// remove prompt once invisible
$(this).remove();
});
});
I tried to remove “click” inside of live, but it didn’t work because the validations don’t appear, anyone can help me? Thanks in advance!
Use the autohide option.
Check the documentation of validationEngine or the validationEngine.js – at the bottom of the .js file you’ll see: