- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 use jQuery to get the value of HTML attribute of elements?
To get the value of html attribute, use the val() method.
Example
You can try to run the following code to learn how to use jQuery to get the value of HTML attribute of elements:
<!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 () { $("#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 use attr() method in jQuery to get the value of an attribute?
- How to get value of data attribute and use it in jQuery?
- How to get the value of id attribute in jQuery?
- How to get the value of src attribute in jQuery?
- How to get the value of custom attribute in jQuery?
- How to get an attribute value in jQuery?
- How to change the value of an attribute using jQuery?
- How to use *= operator in jQuery attribute selector?
- How to use input readonly attribute in jQuery?
- How to use the formmethod attribute in HTML?
- How to use the required attribute in HTML?
- How to get the value of the usemap attribute in JavaScript?
- How to get the value of div content using jQuery?
- How to use autocomplete attribute in HTML?
- How to use formnovalidate attribute in HTML?

Advertisements