- 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 an attribute value in jQuery?
To get an attribute value in jQuery is quite easy. For this, use the jQuery attr() method. You can try to run the following code to learn how to get an attribute value in jQuery −
Example
<html> <head> <title>jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert($("img").attr("height")); }); }); </script> </head> <body> <img src="/green/images/logo.png" alt="logo" width="350" height="120"><br> <button>Get the height</button> </body> </html>
- Related Articles
- How to use attr() method in jQuery to get the value of an attribute?
- 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 value of data attribute and use it in jQuery?
- How to change the value of an attribute using jQuery?
- How to set new value for an attribute using jQuery?
- How to use jQuery to get the value of HTML attribute of elements?
- How to get an attribute value of an element in Selenium Webdriver?
- How to find an element based on a data-attribute value in jQuery?
- How to get an attribute value from a href link in selenium?
- jQuery [attribute!=value] Selector
- How to find an element based on a data-attribute value using jQuery
- How to get attribute of an element when using the 'click' event in jQuery?
- How to get objects by ID, Class, Tag, and Attribute in jQuery?

Advertisements