You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
This question is in reference to Atlassian Documentation: Links
How to open a web link in a new tab?
TBH, this is not really a solution. What is required is to simply allow an editor of a Confluence page to select a target of a link, i.e. `_blank`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is good however, opening a new window is still different from opening a new tab. The built-in macro is for opening a link in a new window. I also prefer that there is also one macro for opening a link in a new tab instead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello.
Without HTML or the source editor I solved it with a user macro.
I just entered the following code:
<script>
jQuery(document).ready(function() {
jQuery(".wiki-content a").attr("target", "_blank");
});
</script>
But: That affects ALL links on a page.
Can I somehow modify it so that only some links will be opened in a new page?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tommaso,
These links show you how to force links to open i a new tab:
https://confluence.atlassian.com/confkb/how-to-force-links-to-open-in-a-new-window-213518072.html
As you're on the Cloud version you'll need to download an HTML macro for cloud if you want to do this; it is paid for but the pricing is very cheap.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, you can ctrl+click a link to open it in a new tab
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
didn't there use to be a checkbox for this simple functionality?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.