Posts by Hector • 11 points
1 post
-
0
votes4
answers8644
viewsA: How to take the "src" value of an "img" tag through Javascript and copy it to clipboard?
In this link There’s an example I used and it worked. Note: Using only Jquery. var src = $('img[alt="example"]').attr('src'); alert("caminho da imagem = " + src);…