2021-04-14 21:30:14 +02:00
|
|
|
document.onreadystatechange = function () {
|
|
|
|
document.querySelectorAll("a").forEach((element) => {
|
|
|
|
let href = element.href;
|
|
|
|
if(href.indexOf(location.hostname) === -1){
|
|
|
|
element.target = "_blank";
|
2021-11-09 11:44:18 +01:00
|
|
|
element.setAttribute("rel", "noreferrer");
|
2021-04-14 21:30:14 +02:00
|
|
|
}
|
2021-04-18 22:29:51 +02:00
|
|
|
});
|
2021-11-09 11:44:18 +01:00
|
|
|
}
|