parsley('destroy') does not disable validation
See original GitHub issueAs a simple test I’ve got
$('#form_id').parsley();
$('#form_id').parsley('destroy');
yet the validation is not skipped.
Running version 2.0.0-rc3
Issue Analytics
- State:
- Created 10 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
parsley.js - how to disable validation for a field
You can deactivate parsley validation, remove the required attribute for the element that you want to disable validation for, and then ...
Read more >Parsley - The ultimate documentation
A field is by default not validated if it is not required and empty. By adding data-parsley-validate-if-empty , validation will be done even...
Read more >Parsley.js Documentation & API - GitHub Pages
Parsley is a dead simple javascript form validation, powerful and UX aware.
Read more >Parsley - The ultimate documentation
A field is by default not validated if it is not required and empty. By adding data-parsley-validate-if-empty , validation will be done even...
Read more >Parsley.js cheatsheet
parsleyjs is the Parsley form validator. ('parsley' is a different package) ... not preferred --> ... Enable/disable error messages uiEnabled: true
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In this case not working … $(“form[name=rateform-4-1]”).parsley().destroy();
Yes that’s fixed it. working as described for me. Thanks very much - awesome work
On 17/04/2014 8:35 a.m., Guillaume Potier wrote: