document.addEventListener("click", function (e) {
if (!e?.target?.href) return
if (new URL(e.target.href).host != new URL(window.location.href).host && !e.target.hasAttribute("target")) {
e.preventDefault();
e.target.setAttribute("target", "_blank");
window.open(e.target.href,'_blank')
}
});
Created
June 2, 2022 00:27
-
-
Save binsarjr/acaf6cad60debe85f71e66d0568dd90b to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment