I have a StackOverflow search to solve this problem, but have not found one that works.
I validate the form using Bootstrap Validator and it works well. I want to disable the button submituntil the whole form is valid and the Bootstrap Validator function has a function isValid(). With this function, the best I can do is enable keyup, which is ugly.
Whenever a form evaluates its validity, the delay time and submit button flash instantly from valid to invalid.
Is there a way to fix this blinking with setTimeoutor .delay()and still have a form function as it is now?
Alternatively, is there a Bootstrap Validator authentication solution for this? (That would be ideal) I looked through the documentation, but did not find anything useful. There are only ways to set a form confirmation time, which does not help my reason.
Here is a JSFiddle that demonstrates the problem.
source
share