vote up 0 vote down star
1

I would like to add a path "images/" to all img tags in my html file. Is that possible and if how can I achive that?

flag
Why? The answer might depend on what you're trying to do. – Peter Hilton Jan 13 at 10:53
If your images paths are broken without javascript involvement it's a bug you need to fix elsewhere. Using javascript isn't solving the problem, it's adding dead weight to the page you shouldn't need. – sanchothefat Jan 13 at 11:05
Yes, this isn't the best way to do that... but maybe an interessant experiment :) – tanathos Jan 13 at 11:07

5 Answers

vote up 1 vote down check

I think this will work well:

$("img").each( function() {
    $(this).attr("src", "images/" + $(this).attr("src"));
});

note that it has sense only if you have already relative path to your images.

link|flag
vote up 1 vote down

From what? Is search/replace in notepad good enough?

link|flag
Hint here: question tags ;) – mtod Jan 13 at 11:35
vote up 0 vote down

I'm sure there's a jQuery specific way to do this, but this basic JS loop will do it. Kind of a strange thing to do after loading all the images from a different URL already though.

var a = document.getElementsByTagName('img');

for(var i=0, n=a.length; i<n; i++)
{
  a[i].src = 'images/'+a[i].src; //see note
}

note: in practice I think you'll want a regex replace to insert the 'images/' string here

link|flag
vote up 1 vote down

Try this:

$("img").attr("src", function (val) {
          return "images/" + val;
        })
link|flag
yeah that'd be it :) one of these days I'll have to start caring about jquery – annakata Jan 13 at 10:51
vote up 0 vote down

Perfect, thanks a lot :-)

link|flag

Your Answer

Get an OpenID
or

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