7 lines
244 B
JavaScript
7 lines
244 B
JavaScript
// // let all external links to open into a new tab
|
|
// Array.from(document.getElementsByClassName("reference external")).forEach(elm => {
|
|
// elm.setAttribute('target', '_blank');
|
|
// console.log(elm);
|
|
// elm.getAttribute('target');
|
|
// });
|