Мне нужно изменить URL для всех svg на моей странице.У меня есть следующий код, но я получаю ошибку, когда пытаюсь использовать setAttributeNS.
jQuery("[*|href*='icons.svg']:not([href])").each(function () {
hashedIconUrl = jQuery(this).attr('xlink:href').replace('icons.svg', hashedIcon);
console.log(hashedIconUrl);
jQuery(this).setAttributeNS('http://www.w3.org/1999/xlink', 'href', hashedIconUrl);
});