This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
caldwell-59/assets/js/common/tabs.js
2024-09-12 13:38:41 +03:00

8 lines
270 B
JavaScript

function tabsInNewPage() {
var links = document.getElementsByTagName("article")[0].querySelectorAll('a');
var a = new RegExp('/' + window.location.host + '/');
links.forEach(link => !a.test(link.href) && link.setAttribute("target", "_blank"));
}
tabsInNewPage();