javascript how to get image src code example
Example 1: js get image src
var youtubeimgsrc = document.getElementById("youtubeimg").src;
Example 2: insert image using set atribute
var img = document.getElementById("example");
console.log(img.getAttribute("src")); // "images/foo.png"
console.log(img.src); // "http://example.com/path/images/foo.png"
Example 3: how to edit image tags in javascript
<a href='#' onclick='edit()'><img src="../template/edit.png" id="edit-save"/></a>