How can i get the image or image url on select that image using javascript, any examples?
Thanks Manoj
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:
id
myImage
document.getElementById("myImage").onclick = function() { console.log(this.src); }
Here's a working example. Clarify your question and I can clarify my answer.
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')); });
Copyright © 2021 Jogjafile Inc.
Your question is far from clear, but assuming an image with an
id
ofmyImage
, and assuming that by "select" you mean "click", you can do this:Here's a working example. Clarify your question and I can clarify my answer.