jquery form id submit

Solutions on MaxInterview for jquery form id submit by the best coders in the world

showing results for - "jquery form id submit"
Emanuele
27 May 2020
1$(document).ready(function(){
2    $("#submitBtn").click(function(){        
3        $("#myForm").submit(); // Submit the form
4    });
5});