I am adding an external website link to a confluence page. When a user clicks on the link, I want the link to open up in a new browser tab. Is that possible?
You can use a script:
<script>
jQuery(document).ready(function() {
jQuery(".external-link").attr("target", "_blank");
});
</script>
This should only work for external links. All links pointing to Confluence pages won't be affected. More in https://confluence.atlassian.com/confkb/how-to-force-links-to-open-in-a-new-window-213518072.html.
(i) Google Chrome opened all external links in a new tab(for me).
I don't see 'Custom HTML' anywhere on the page, or in the navigation. Is this option available in the new design? Or is it not available for Jira/Confluence Cloud? It looks like there's an open feature request for this: https://jira.atlassian.com/browse/CONFCLOUD-11194
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not the "new design". Cloud has never allowed custom html.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.