Blogger - Open In New Tab

This allows for escaping out of an iframe. It must go into the HTML. It works after the <body> tag.


<script>
//<![CDATA[
        document.addEventListener("click", function (e) {
            if (e.target.tagName == "A" &&
                e.target.href.startsWith('https://www.blogger.com')) {
                e.target.setAttribute("target", "_blank");
            }
        });
//]]>
</script>
 

Comments