Is it possible to create a link (out of the selected text part) that will by default open in a NEW browser tab instead of the current tab?
Thanks!
Add this to Custom HTML settings At end of the HEAD to open any external links in new Tab.
<script>
jQuery(document).ready(function() {
jQuery(".external-link").attr("target", "_blank");
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.