- 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 attribute of an element when using the 'click' event in jQuery?
To get attribute of an element, use the attr() method in jQuery. You can try to run the following code to get attribute of an element using the ‘click’ event −
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert("Width of image: " + $("img").attr("width")); }); }); </script> </head> <body> <img src="/videotutorials/images/coding_ground_home.jpg" alt="Coding Ground" width="284" height="280"><br> <button>Get Width</button> </body> </html>
- Related Articles
- How to handle a link click event using jQuery?
- How to handle a double click event using jQuery?
- How to submit a form using jQuery click event?
- How to handle a mouse right click event using jQuery?
- How to enable the “disabled” attribute using jQuery on button click?
- How to get the width of an element using jQuery?
- How to get the height of an element using jQuery?
- How to get an attribute value in jQuery?
- How to get HTML content of an element using jQuery?
- How to check the element type of an event target with jQuery?
- How to click anywhere on the page except one element using jQuery?
- How to change the value of an attribute using jQuery?
- How to change the src attribute of an img element in JavaScript / jQuery?
- How to find an element based on a data-attribute value using jQuery
- How can I get the ID of an DOM element using jQuery?

Advertisements