Skip to content
document.addEventListener('DOMContentLoaded', function () {
var links = document.querySelectorAll('a[href^="http"], a[href^="https"]');
links.forEach(function(link) {
if (link.hostname !== location.hostname) {
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener noreferrer');
}
});
});