9 lines
No EOL
374 B
JavaScript
9 lines
No EOL
374 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
var links = document.querySelectorAll('a[href^="https://"], a[href^="http://"]');
|
|
links.forEach(function(link) {
|
|
if (!link.href.includes(window.location.hostname)) {
|
|
link.setAttribute('target', '_blank');
|
|
link.setAttribute('rel', 'noopener noreferrer');
|
|
}
|
|
});
|
|
}); |