SharePoint Top Navigation Link: Open in New Window
There was a requirement is to add a link in intranet portal’s top navigation bar. Provided on clicking the link, it should open in new window, as the site link added was developed in a different platform & environment other than SharePoint.
If publishing feature is enabled, we can just go to: Site Actions >> Site Settings >> Navigation (Under Look and Feel), Add a New link with “Open link in new window” check-box selected. That’s all, We are done with opening top navigation link in new window!
However, On the provided site we don’t have the publishing feature enabled. So, on the site settings page, we saw the “Top link bar” link instead of “Navigation”. Unfortunately, it doesn’t provide us an option to open links in a new window.
How to Open SharePoint top navigation link in a New Window?
JavaScript! In URL field, just enter: javascript:void(window.open(‘https://your-link.aspx’,’_blank’))
Even javascript:void(window.open(‘https://your-link.aspx’)) will work!
In my case, I had to enter:
javascript:void(window.open('https://peoplesoft.crescent.com/employee/profile.aspx','_blank'))
Follow this post to open SharePoint Link list links to new window: SharePoint Link list: Open in a New Window
Does anyone know how for Sharepoint 2013??
Disable minimal download strategy and it seems to work: https://www.siolon.com/blog/sharepoint-2013-site-navigation-does-not-open-in-new-window/ I’m surprised this was so hard to find online.
The javascript method doesn’t work in SharePoint 2013.
Perfect! Many others offered many solutions, but none as good and simple as this. Thanks.