Attach a function to the submit event: - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:submit

Description

Attach a function to the submit event:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("form").submit(function(){
        console.log("Submitted");
    });//from   www . j a  v  a  2s .  c om
});
</script>
</head>
<body>

<form action="">
  First name: <input type="text" name="FirstName" value="Bond"><br>
  Last name: <input type="text" name="LastName" value="Mary"><br>
  <input type="submit" value="Submit">
</form>

</body>
</html>

Related Tutorials