yellow-externallinks/externallinks.js
2026-05-28 09:24:49 +02:00

7 lines
No EOL
283 B
JavaScript

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');
}
});