September 25, 2024 - September 27, 2024

document.addEventListener("DOMContentLoaded", function () { const links = document.querySelectorAll("a"); const currentHost = window.location.host; links.forEach(function (link) { const linkHost = new URL(link.href).host; if (linkHost !== currentHost) { link.addEventListener("click", function (event) { event.preventDefault(); event.stopPropagation(); window.open(link.href, "_blank"); }); } }); });