Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to ask question is there possible way with jQuery to change a part of images' source ? The html code is simple as

<img src="numbers/gray/1.png" alt="green" width="44" height="46" /> 
<img src="numbers/gray/5.png" alt="green" width="44" height="46" /> 

and so[there are two folders '/gray/' and '/green/'],can i just (as an example clicking on link"Become green") to change the part "/gray/" of the source with "/green/" while keeping each personal end of the source. Thanks.

share|improve this question

3 Answers

up vote 5 down vote accepted

Just try something like this:

$(function(){
  $('#myLink').click(function(){
    $('img').each(function(){
      var $this = $(this)
      $this.attr('src',$this.attr('src').replace('gray','green'))
    })
  })
})
share|improve this answer
you can consider: .replace(/\/gray\//g, '/green/')); – dereli Sep 12 '12 at 22:29
Thanks, that worked well :) – Daemonyoyo Sep 12 '12 at 22:34
Glad to help! If this helped you, please accept it by clicking the checkbox next to the answer. :) – Abraham Sep 13 '12 at 10:18

you can use replace() to change just the grey to whatever you like

var src = $('img').attr('src').replace('gray','green');

check out this jsFiddle

$('img').attr('src', src);
share|improve this answer
You lost set the img src attribute with the var src you will obtain – Alberto León Sep 12 '12 at 22:29
correct $('img').attr('src', src); – McMastermind Sep 12 '12 at 22:30

Try this:

$('img').attr('src').replace('gray', 'green');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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