UNPKG

305 BJavaScriptView Raw
1window.addEventListener('DOMContentLoaded', function() {
2 const links = document.querySelectorAll('a');
3
4 links.forEach((link) => {
5 if (link.href && link.href.indexOf('http') === 0) {
6 link.setAttribute('target', '_blank');
7 link.setAttribute('rel', 'noopener noreferrer');
8 }
9 });
10});
\No newline at end of file