Get image src attribute value in jQuery
Description
The following code shows how to get image src attribute value.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w ww. j a v a 2s .co m-->
document.writeln($("img").attr("src"));
});
</script>
</head>
<body>
<body>
<img src="a.gif" />
</body>
</html>