Form submitting is really simple with jQuery. You can use submit function to submit form or catch a form submission and do something else.
Source code viewer
// You can call this from anywhere and the form will be submitted. // Catch form submit, jQuery will catch any form submit and you can rewrite it to do what ever you want. alert("You pressed submit."); event.preventDefault(); });Programming Language: jQuery