Hey Tom, thanks for the quick help and solution. I took the liberty to add a little security attributes to your script: jQuery(document).ready(function() { jQuery(".text-rich-text a").attr("target", "_blank").attr("rel", "noopener noreferrer"); }); Some details for those who are just copying and pasting: rel attribute with noopener and noreferrer enhances security when opening links in a new tab. - noopener blocks access to the window.opener property, preventing malicious sites from manipulating the originating window. - noreferrer suppresses the Referer header, stopping the new page from knowing where the link came from. DISCLAIMER: Using noreferrer may interfere with tracking systems such as affiliate links, as it blocks the transmission of referrer information. These attributes limit the control and information a new page has about the one that opened it, providing extra security and privacy.