I have a application with menu items item1, item2 etc. When I click any item it opens in a separate tab under menu. I have also a blank application with a hyperlink as show in attached image. When I click the link, it replace the tab with linked page. How can I set it so that the linked page is opened in a separate tab?
1 Like
Any idea/ suggestion? Or it it not possible it all.
To open a linked page in a separate tab instead of replacing the current one, you just need to add target="_blank" to your hyperlink’s HTML. <a href="yourpage.html" target="_blank">Item 2</a>