Joget Form Validator in Javascript
Confluence User - 21 Jan, 2022
The below codes is executed even if the form validator is not valid
Is there a way to prevent executing 'testing' if the form is not valid or an event that is handled after the form is submitted and is valid
function testing(){
}
$("#form_id" ).submit(function( event ){
testing();
});
$('#submit,#assignmentComplete').on('click',function(event){
testing();
});
javascript;forms;validation;validating