Is it possible to open a link in a new window by clicking on an image versus text?
I've found documentation for opening in a new window from a text link, but is there any way to modify that to work from an image?
Hi Neil, yes there is - it involves a bit of tinkering with Confluence customizations, you can review the details here.
It uses the following script:
<script> jQuery(document).ready(function() { jQuery(".wiki-content a").attr("target", "_blank"); }); </script>
You also have to enable the HTML Macro.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.