Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery submit() Method

❮ jQuery Event Methods

Example

Display an alert when a form is submitted:

$("form").submit(function(){
  alert("Submitted");
});
Try it Yourself »

Definition and Usage

The submit event occurs when a form is submitted.

This event can only be used on <form> elements.

The submit() method triggers the submit event, or attaches a function to run when a submit event occurs.


Syntax

Trigger the submit event for the selected elements:

$(selector).submit() Try it

Attach a function to the submit event:

$(selector).submit(function) Try it

Parameter Description
function Optional. Specifies the function to run when the submit event is triggered

Try it Yourself - Examples

Prevent the default action of a submit button
How to prevent the form being submitted using the event.preventDefault() method.


❮ jQuery Event Methods