I'm learning how to make an image gallery with jquery. the images file path is this for the final site.

<img src="images/gallery/refraction_thumbnail.jpg"/></a>

but when I'm loading it locally in my chrome browswer to test, the images aren't showing because the images are at this file path

file:///Users/name/Desktop/myGallery/images/gallery/refraction_thumbnail.jpg

Is there a convenient way to get the images to load on my local browswer without manually changing all the file path links?

For example, I thought if I just put a / in front of "images" it might work but it didn't.

link|improve this question

Where's your HTML file relative to the images folder? If it's in the same folder as the images folder your code should work. Putting a / in front of images makes it go to C:\ by the way. – minitech May 20 '11 at 2:46
feedback

2 Answers

up vote 2 down vote accepted

You should really use the correct path in the HTML.

However, I can see you are using the file protocol, so you are just experimenting. In that case, you could knock up some dirty jQuery code to do it for you.

$('img').attr('src', function(index, src) {
    return 'file:///Users/name/Desktop/myGallery/' + src;
});
link|improve this answer
feedback

if your site is stored in file:///Users/name/Desktop/myGallery it should work. Perhaps change the src to ./images/gal.... adding the ./ to look fro the current directory. a 2nd alternative would be to set up a webserver, such as apache, and call the page from there. I tend to try to mirror my production environment on my development machine as much as possible.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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