JQuery form field value by id
JQuery : HTML Form - input value by Id
In this article, I showed you on how to get the form field value using JQuery. You can use following script to get form field value.
JavaScript input field value by Id example
<!doctype html> <html lang="en"> <head> <style> p{ color: red; size:15px; } </style> <script src="http://freeonlinecompiler.ptutorial.com/ js/jquery.min.js"></script> </head> <body> <input type="text" id="uk" value="pTutorial"> <button>click here</button> <p></p> <script> $(document).ready(function(e) { $('button').click(function(){ alert($('#uk').val()); }); }); </script> </body> </html>