Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
183
rated 0 times [  187] [ 4]  / answers: 1 / hits: 40544  / 15 Years ago, thu, june 4, 2009, 12:00:00

I've got image tags that look like this:



<img src=/path/to/my/image.jpg />


But when I access the src bit using jQuery, jQuery gives me back:



http://example.com/path/to/my/image.jpg


This is causing problems in some comparisons I'm doing. I don't want to change my image paths to use absolute URLs.



Any ideas as to how I can either get the absolute URL from the image path (this might not be as simple as concatenating the domain - since the URLs may occasionally be absolute), or get the path I provided in the HTML? Either way I need them to match up.



Edit per comment from activa



There's not really a lot of jQuery code to post, I'm using the cycle plugin, and in the onbefore function, I'm just calling next.src. My jQuery and JavaScript foo isn't sufficient to really understand what the cycle plugin is doing to generate next - I think it's the DOM element for the next image being cycled in, if you're familiar with what cycle does.



My image tag is actually this:



<img src=/site_media/photologue/photos/cache/6927d406810ee9750a754606dcb61d28.jpg alt= class=landscape slideshow-image-1 />


and in my onbefore function this code:



alert(next.src);


results in an alert with:



http://127.0.0.1:8000/site_media/photologue/photos/cache/6927d406810ee9750a754606dcb61d28.jpg

More From » jquery

 Answers
9

$(img).attr(src) gives back the actual value of the src attribute (tried in FF3 and IE7)



So when you have



<img src=http://example.com/path/to/my/image.jpg />


it will return



http://example.com/path/to/my/image.jpg


And when you have



<img src=/path/to/my/image.jpg />


it will return



/path/to/my/image.jpg


Edit after edit of question



Sounds like you may want to try



$(next).attr(src)

[#99387] Monday, June 1, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
laytonlamontm

Total Points: 745
Total Questions: 130
Total Answers: 130

Location: Cambodia
Member since Thu, Oct 7, 2021
3 Years ago
;