- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get and set form element values with jQuery?
To get a form value with jQuery, you need to use the val() function. To set a form value with jQuery, you need to use the val() function, but to pass it a new value.
Example
You can try to run the following code to learn how to get and set form element values with jQuery −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#buttonSet").click(function () { $("#txtBox").val("Amit"); $("input:radio").val(["male"]); $("#buttonGet").removeAttr('disabled'); }); $("#buttonGet").click(function () { $("#result").html( $("#txtBox").val() + "<br/>" + $("input:radio[name=rd]:checked").val() ); }); }); </script> </head> <body> Name <br /> <input id="txtBox" type="text" /> <br /><br /> Gender <br /> <input type="radio" name="rd" value="male"/> Male <input type="radio" name="rd" value="female"/> Female <br /><br /> <input id="buttonSet" type="button" value="Set Values" /> <input id="buttonGet" type="button" value="Get Values" disabled="disabled" /> <p id="result"></p> </body> </html>
- Related Articles
- How to set width and height of an element using jQuery?
- How to get the closest input value from clicked element with jQuery?
- Set a fixed element and scroll another - jQuery
- How to clear HTML form fields with jQuery?
- How to set HTML content of an element using jQuery?
- How to get a DOM Element from a jQuery Selector?
- How to get the width of an element using jQuery?
- How to get the height of an element using jQuery?
- How to get HTML content of an element using jQuery?
- How to set new id attribute with jQuery?
- How to get the width of a div element using jQuery?
- How to get the height of a div element using jQuery?
- Use jQuery to get values of selected checkboxes?
- How to select element with specific class and title attribute using jQuery?
- How to access element with nth index in jQuery?

Advertisements