When I embed links it opens in the current tab. I am building an onboarding resource page, it would be nice if people could open multiple resources without having to go back and forth or using the right-click. We are all on MacBook, some of our windows folks get frustrated with "right-clicking" on the touchpad.
Hi
You have some options:
1- Go to Confluence Administration and add the following script to Custom HTML
<script>
jQuery(document).ready(function() {
jQuery(".wiki-content a").attr("target", "_blank");
});
</script>
2 - You could enable confluence HTML Macro or install Bob Swift Atlassian Add-ons - HTML
and add your link at this way:
There are some other questions answered in the following posts, check them for more info:
https://community.atlassian.com/t5/Confluence-questions/How-to-open-link-in-a-new-tab/qaq-p/227460
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Feel free to ask if you have any other questions.
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.