8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
var links = document.querySelectorAll('a[href^="http"]');
|
|
links.forEach(function(link) {
|
|
link.setAttribute('target', '_blank');
|
|
link.setAttribute('rel', 'noopener noreferrer');
|
|
});
|
|
});
|