Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<img src="../img/arnold.png" alt="Arnold">

How do I get with jQuery absolute path of this image?

img.attr("src") gives me just "../img/arnold.png", should give something like "http://site.com/data/2011/img/arnold.png" (full url).

share|improve this question
It's depend on how did you assign image path in image src. – ppshein Aug 5 '11 at 6:17

2 Answers

up vote 15 down vote accepted
alert( $('img')[0].src );

this might do the trick... but not sure about cross browser....

demo in here

also try prop of jQuery 1.6..

alert( $('img').prop('src') );

demo here

share|improve this answer
1  
+1 Didn't know prop could do this. Really nice. – Shrikant Sharat Aug 5 '11 at 6:31
+1 This is very neat - Steve this looks like the correct answer to me – Peter Munnings Aug 5 '11 at 6:40
Good answer , like the demos , +1.... – Muse Aug 5 '11 at 7:13

I don't know that you can get it with jQuery, but you can get it with just the native JavaScript image object.

var getSrc = function(imgSource) {
    var img = new Image();
    img.src = imgSource;
    return img.src;
};

Just call it with x = getSrc(srcAttribute) or something similar where your parameter is the string or literal holding the src you currently have in your html/image. It will return something like http://your/site/path/to/image.jpg

http://jsfiddle.net/BradleyStaples/cQMjQ/

share|improve this answer

protected by Reigel Aug 8 '11 at 1:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.