Get image or image url on select that image

11.4k Views Asked by At

How can i get the image or image url on select that image using javascript, any examples?

Thanks Manoj

2

There are 2 best solutions below

2
On

Your question is far from clear, but assuming an image with an id of myImage, and assuming that by "select" you mean "click", you can do this:

document.getElementById("myImage").onclick = function() {
    console.log(this.src);
}

Here's a working example. Clarify your question and I can clarify my answer.

0
On

This is fairly straightforward using jQuery:

$('#image_id').attr('src')

This will return the src url of the image with the id of "image_id".

If you want this information on a click event, you can wire that up like this:

$('#image_id').click(function(){
   alert($(this).attr('src')); 
});