I am working on a project where I need to validate a form dynamically inserted to the DOM. Was wondering how to properly accomplish this?
I tried the following unsuccessfully:
$(document).on('formValidation', '#myform', {
fields: {
"first_name": {
validators: {
Current Validation format:
$('#myForm')
.formValidation({
fields: {
"first_name": {
validators: {
notEmpty: {
message: 'Please enter a first name.'
}
}
},
One solution is to use MutationObserver to listen in on nodes dynamically added to the DOM.
When a form with the id
myForm
is added to the body you will know and can then execute your form validation logic.For example