Javascript examples for jQuery:Form Submit
Call Javascript Function On Form Submit
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("form").submit(function(){ console.log("Submitted"); });// w w w. j a va 2s . c o m }); </script> </head> <body> <form action=""> First name: <input type="text" name="FirstName" value="Mickey"> <br> Last name: <input type="text" name="LastName" value="Mouse"> <br> <input type="submit" value="Submit"> </form> </body> </html>