We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Guys,
If validaiton fails, is it possible for it to focus on the failed input?
Hope this makes sense.
The text was updated successfully, but these errors were encountered:
I've managed to do this..
I've just altered the addFieldClass function, with the following:
addFieldClass: function(){ this.removeFieldClass(); if(!this.validationFailed){ if(this.displayMessageWhenEmpty || this.element.value != ''){ if(this.element.className.indexOf(this.validFieldClass) == -1) this.element.className += ' ' + this.validFieldClass; } }else{ if(this.element.className.indexOf(this.invalidFieldClass) == -1) this.element.className += ' ' + this.invalidFieldClass; //Set Focus On In-Valid Elements var id = this.element.id; document.getElementById(id).focus(); } },
Sorry, something went wrong.
No branches or pull requests
Hi Guys,
If validaiton fails, is it possible for it to focus on the failed input?
Hope this makes sense.
The text was updated successfully, but these errors were encountered: