Home > Software engineering >  FormValidation in 2 submit buttons
FormValidation in 2 submit buttons

Time:04-05

I have 2 submit buttons 'update and 'exit', how to determine if the 'exit' was clicked and if it's clicked then disable the FormValidation?

please help

thanks FD

CodePudding user response:

You can use different ajax call for each submit bottom, and do whatever you want on their own function.

CodePudding user response:

For Javascript you can use this:

<button type="submit" onclick="functionToDoOnTheClick">Submit</button>

This is what your HTML should look like on your submit button then in your javascript you can have the function which will disable your form validation. The name of that function you want to add into the quotes for onlick"".

  • Related