I have a web app which replaces few img's with other img's.

For example: Image with path http://example.com/example/example/images/dir/1.gif is repalced with http://cdn.example.com/dir/1.gif.

To do this I use jQuery attr().

So my code looks something like this:

$('img[src="http://www.example.com/dir/images/dir/1.gif"]').attr('src', "http://cdn.example.com/dir/1.gif");
$('img[src="http://www.example.com/dir/images/dir/2.gif"]').attr('src', "http://cdn.example.com/dir/2.gif");
$('img[src="http://www.example.com/dir/images/dir/3.gif"]').attr('src', "http://cdn.example.com/dir/3.gif");
$('img[src="http://www.example.com/dir/images/dir/4.gif"]').attr('src', "http://cdn.example.com/dir/4.gif");
$('img[src="http://www.example.com/dir/images/dir/5.gif"]').attr('src', "http://cdn.example.com/dir/5.gif");
$('img[src="http://www.example.com/dir/images/dir/6.gif"]').attr('src', "http://cdn.example.com/dir/6.gif");
$('img[src="http://www.example.com/dir/images/dir/7.gif"]').attr('src', "http://cdn.example.com/dir/7.gif");
$('img[src="http://www.example.com/dir/images/dir/8.gif"]').attr('src', "http://cdn.example.com/dir/8.gif");
$('img[src="http://www.example.com/dir/images/dir/9.gif"]').attr('src', "http://cdn.example.com/dir/9.gif");
$('img[src="http://www.example.com/dir/images/dir/10.gif"]').attr('src', "http://cdn.example.com/dir/10.gif")

So is there a way to compress this? So it's written in less characters?

Note: On each line, images on both websites are the same. Example, 1.gif is replaced again with 1.gif but a different server. So basically I want to replace the server. When http://www.example.com/dir/images/dir/ replace with http://cdn.example.com/dir/.

Thanks alot

link|improve this question

Use a for loop. – zzzzBov Oct 24 '11 at 3:09
1  
If this is for performance reasons (bandwidth distribution), you should be doing this server-side. – Phil Oct 24 '11 at 3:50
+1 Phil, using a CDN to increase performance, but if you're doing this after page loads, i.e. the old images have already loaded and then you're doing the replaces, thats actually making performance worse – Moin Zaman Oct 24 '11 at 3:52
@Phil Images are retrieved from an API. So there is no way I can change that server-side unfortunately – jQuerybeast Oct 24 '11 at 4:05
feedback

2 Answers

up vote 1 down vote accepted

It's as simple as using a loop:

var i;
for ( i = 1; i <= 10; i++ )
{
  $('img[src="http://www.example.com/dir/images/dir/'+i+'.gif"]').attr('src','http://cdn.example.com/dir/'+i+'.gif');
}

Or were you asking for a find and replace for all?

You could use the attr starts with selector:

$('img[src^="http://www.example.com/"]').each(function(index,element){
  var $this, src, newSrc;
  $this = $(this);
  src = $this.attr('src');
  //do your replacement here
  newSrc = src.replace('www.example.com/dir/images/dir', 'cdn.example.com/dir');
  $this.attr('src', newSrc);
});

as Moin Zaman pointed out, attr can take a function as a parameter as well, which shortens this script to:

$('img[src^="http://www.example.com/"]').attr('src', function(index, src){
  return src.replace('www.example.com/dir/images/dir', 'cdn.example.com/dir');
});
link|improve this answer
Using a loop for this is overkill. the attribute selector is better but you dont need .each – Moin Zaman Oct 24 '11 at 3:14
2  
@MoinZaman, what are you talking about? – zzzzBov Oct 24 '11 at 3:15
@zzzzBov Thank you. The images names are random. Could be anything so I the first option wouldn't work. As for the second option can you explain me the img[src^=" ? Why do I have to include ^ ? – jQuerybeast Oct 24 '11 at 3:34
@jQuerybeast look at my answer below for the explanation of ^= and a better way to do what you're wanting – Moin Zaman Oct 24 '11 at 3:42
You're second option worked sir. – jQuerybeast Oct 24 '11 at 12:28
show 1 more comment
feedback

You need JavaScript's .replace() method with regular expressions to replace stuff.

in jQuery the attribute selector ^= means look for attribute value that starts with.

Try this, I'm assuming its all images that start with 'www.example.com':

$('img[src^="http://www.example.com/dir/images/dir"]').attr('src',
    function(i,src){ 
        return src.replace('example.com/dir/images/dir','cdn.example.com/dir') 
});
link|improve this answer
1  
wanna explain the down vote? – Moin Zaman Oct 24 '11 at 3:17
Down vote wasn't from me. Thanks for your answer. I will be checking it in a while. – jQuerybeast Oct 24 '11 at 4:04
No worries, I think I know who the downvote was from :) – Moin Zaman Oct 24 '11 at 4:09
It seems it doesn't work? – jQuerybeast Oct 24 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

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