Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

HTML onsubmit Attribute


Definition and Usage

The onsubmit attribute fires when a form is submitted.


Applies to

The onsubmit attribute is part of the Event Attributes, and can be used on the following element:

Elements Event
<form> onsubmit

Example

Execute a JavaScript when a form is submitted:

<form onsubmit="myFunction()">
  Enter name: <input type="text">
  <input type="submit">
</form>
Try it Yourself »

Browser Support

Event Attribute
onsubmit Yes Yes Yes Yes Yes