AJAX POST

AJAX POST

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