- 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 the value of src attribute in jQuery?
To get the value of src attribute in jQuery is quite easy. We will get the src attribute of the img tag. This attribute has the URL of the image. Let’s first see how we can add jQuery −
You can try to run the following code to learn how to get the value of src attribute in jQuery −
Example
<html> <head> <title> Selector Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { alert($('#myimg').attr('src')); }); </script> </head> <body> <p>Logo</p> <img src="/green/images/logo.png" id="myimg"> </body> </html>
- Related Articles
- How to get the value of id 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 src attribute of an img element in JavaScript / jQuery?
- How to use jQuery to get the value of HTML attribute of elements?
- How to get value of data attribute and use it in jQuery?
- How to use attr() method in jQuery to get the value of an attribute?
- How to change the value of an attribute using jQuery?
- How to get the value of the usemap attribute in JavaScript?
- jQuery [attribute!=value] Selector
- How to get the value of div content using jQuery?
- How to get the value of the id attribute a link in JavaScript?
- How to set new value for an attribute using jQuery?
- How to get the value of the hreflang attribute of a link in JavaScript?
- How to get the value of the rel attribute of a link in JavaScript?

Advertisements