By default, links are opened in the same window. To force them to be opened in a new window, follow these steps:
- Visit
Administration >> Custom HTML
- Click
Edit
- In the
At end of the HEAD
field, insert this code:- For external links only, like
[http://www.google.com]
:<script> jQuery(document).ready(function() { jQuery(".external-link").attr("target", "_blank"); }); </script>
- For all type of links (internal and external):
<script> jQuery(document).ready(function() { jQuery(".wiki-content a").attr("target", "_blank"); }); </script>
- For external links only, like
- Hit
Save
![]() |
This customisation will only work for Confluence 3.0.1 and above |