Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I came across a problem today, and I'm wondering if I can fix it. Is there a way to get each of the element (ol.notes .avatar - there are more than one ol.notes .avatar) and replace part of the image SRC with them? Each image ends with _16.png, but I need jQuery to replace that _16.png with _48.png. Is there a way to do this?

What I have now (not working)

    $('ol.notes .avatar').each(function(){
    this.src = this.src.replace("_16","_40");
});
share|improve this question
Help us out. Give a code sample of what you already have then we can see how to make a change – Steve Mar 10 '12 at 2:56
@Steve edited.. – JamesCharless Mar 10 '12 at 2:57
@JamesCharless: The code you added to the question should work. Is the .avatar a reference to the actual images? – squint Mar 10 '12 at 2:59

1 Answer

up vote 4 down vote accepted
$('ol.notes .avatar').attr('src', function(i, src) {
    return src.replace( '_16.png', '_48.png' );
}); 
share|improve this answer
Didn't work.. Page example: http://-respawn.tumblr.com/post/19036443597/xantheose-jesus-in-toronto-by-kvdl - The small & blurry images towards the right side. – JamesCharless Mar 10 '12 at 3:00
@JamesCharless: You have errors on the page. Something about TrimURL() and InfiniteScroll. You'll want to fix those. – squint Mar 10 '12 at 3:01
1  
+1, never seen the attr call back version before. Very handy. – JaredPar Mar 10 '12 at 3:02
...When I drop the code directly into the console, the images update correctly, so the errors may be causing the scripts to stop running. – squint Mar 10 '12 at 3:03
@amnotiam I deleted the trim url because I forgot to, and there are no errors in the console, but it still does not work. – JamesCharless Mar 10 '12 at 3:05
show 14 more comments

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.