Hello. I want to mod a page from a site that prefixes all its links with "http://linkblur.com/?" I tried this:
links = getElementsByTagName('a');
for (l in links) {
l.href = l.href.replace('http://linkblur.com/?','');
}
But it doesn't work. What am I doing wrong?
tks
Steve