How do I get with jQuery absolute path of this image?
img.attr(\"src\") give
img.attr(\"src\")
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