Here is documentation about UI/UX (link). But default parsley.js mottos not suitable for my project, especially the following:
- Quick error removal: when a field is detected and shown as invalid, further checks are done on each keypress to try to quickly remove error messages once the field is ok.
Now I've set {uiEnabled: false} and want manually to implement behaviour, which is suitable for me. Here is few thing I need:
parsleyField.addError not working with disabled UIHow can I implement this with parsley.js?
Change the triggerAfterFailure option to ''.
Look at the errorsContainer option. Could be a function that does the append I believe.
Good luck.