I used the tip on http://buildwithstructure.com/documentation/linking_to_an_external_page_or_file_in_navigation/ to create an external link on my site but am having an issue to get it to open in a new window.
I tried adding the following jquery to my page header but this didn’t work as the link is being handled as an internal link:
$(‘a[href^=“http://”]’)
.attr(“target”, “_blank”);
Any tips/ideas to solve this?
Thanks in advance.