I'm trying to add "sip:" before a list of emails
This is my code :
// Adds sip: to skype emails to use Skype Entreprise
var elems = document.getElementsByClassName('skypemail');
Array.from(elems).forEach(function(v) {
var elemVal = v.getAttribute('href');
v.setAttribute('href', 'sip:' + elemVal);
});
To my links :
<a id="skypemail" href="username@website.com">test</a>
<a id="skypemail" href="username1@website.com">test</a>
<a id="skypemail" href="username2@website.com">test</a>
<a id="skypemail" href="username@website.com">test</a>
It works fine with all navigators but it is not working with IE 11
When i used the debugbar i got :
the object doesn't support this property or method "from"