AJAX POST
AJAX POST
I want to post my entire form, do I need to specify each field or should this work?
- $( document ).on("click", "#register-submit" , function() {
- $.post( "register-process.php", {}).done(function() {
- alert( "Registration Complete");
- });
- })