Jquery get form field value, JavaScript get form field value, How can I get form data with JavaScript/jQuery, Accessing form elements using jquery, JQuery Get Content and Attributes, Convert HTML Form Field Values to a JSON Object, Get All the Values of All Input Boxes in JQUERY with the Serialize Function
how-can-i-get-form-data-with-javascript-jquery.html
<html> <head> <script src="https://code.jquery.com/jquery-git.js"></script> <meta charset="utf-8"> <title>How can I get form data with JavaScript/jQuery.</title> </head> <body> <form> Your Name:<br> <input type="text" value="name" name= "name":"><br> Address:<br> <input type="text" value="address" name="address"> </form> </body> <script> console.log($('form').serialize()); </script> </html>