submit form through jquery by id

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

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