You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

By default, external links like Atlassian and Google are opened in the same window. To force them to be opened in a new window, follow these steps:

  1. Visit Administration > Custom HTML
  2. Click Edit
  3. In the At end of the HEAD field, insert this code:
    <script>
    jQuery(document).ready(function() {
        jQuery(".external-link").attr("target", "_blank");
    });
    </script>
    
  4. Hit Save
  • No labels