6

I followed some documentation to use the JavaScript replace function and it's not changing anything. No errors are thrown. Any idea what I'm doing wrong? The variable is retrieved from XML - maybe it needs to be cast as a string or something?

for (var i = 0, iln = projects.length; i < iln; i++){
    var thumb = projects[i].get('thumb');
    thumb.replace("200.jpg", "640.jpg");
    console.log(thumb) //200.jpg not replaced
}

The full thumb value should look like this:

http://b.vimeocdn.com/ts/160/895/160895498_200.jpg

Is there a better way to find and replace things?

Qantas 94 Heavy
  • 15,750
  • 31
  • 68
  • 83
mheavers
  • 29,530
  • 58
  • 194
  • 315

2 Answers2

15

Assign the value back into thumb.

thumb = thumb.replace("200.jpg", "640.jpg");
agent-j
  • 27,335
  • 5
  • 52
  • 79
4

Try:

thumb = thumb.replace("200.jpg", "640.jpg");
Eystein Bye
  • 5,016
  • 2
  • 20
  • 18