I am currently learning jquery and in one of my activities I have to get the src from some images on this webpage. But I can't seem to get the img URL. I managed selecting the image and to get any attribute but not src's url. This is the selector i am using:
$('img.thumbnail-img').attr("src");
But it gives me this back instead of the url:
data:image/gif;base64,R0lGODlhAwAEAIAAAAAAAAAAACH5BAEAAAAALAAAAAADAAQAAAIDhI9WADs=
EDIT: Hi! I think i didnt't quite explain myself. I want to get the image src url, and instead i get what i pasted above. By looking at the html of the page you can see that there is an actual image url like this one for example, but instead i get that data:image... thing which, by following the steps in the solution, is not the image i want to get. Maybe the selector is wrong?
Thanks!