Javascript examples for jQuery Method and Property:submit
Attach a function to the submit event:
<!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>