У меня проблемы с получением регулярного выражения для замены всех вхождений строки в строке.
**What to replace:**
href="/newsroom
**Replace with this:**
href="http://intranet/newsroom
Это не работает:
str.replace(/href="/newsroom/g, 'href="http://intranet/newsroom"');
Есть идеи?
РЕДАКТИРОВАТЬ
Мой код:
str = '<A href="/newsroom/some_image.jpg">photo</A>';
str = str.replace('/href="/newsroom/g', 'href="http://intranet/newsroom"');
document.write(str);
Спасибо, Теган