8 lines
No EOL
251 B
JavaScript
8 lines
No EOL
251 B
JavaScript
document.onreadystatechange = function () {
|
|
document.querySelectorAll("a").forEach((element) => {
|
|
let href = element.href;
|
|
if(href.indexOf(location.hostname) === -1){
|
|
element.target = "_blank";
|
|
}
|
|
});
|
|
} |