Skip to content
Advertisement

How to do something before on submit?

i have a form which has a button that submits the form. I need to do something before submits happen. I tried doing onClick on that button but it happens after the submit.

I can’t share the code but, generally, what should I do in jQuery or JS to handle this?

Advertisement

Answer

If you have a form as such:

JavaScript

You can use the following jQuery code to do something before the form is submitted:

JavaScript

Update; for newer JQuery versions (to avoid deprecation warnings), try:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement