How to open link in new tab from a knowledge article or any service catalog.SummaryThis article will explain how to create a link that will always open in a new tab. ReleaseAll Releases.InstructionsThe target attribute defines where to open the linked document. The target attribute can have one of the following values: _blank - Opens the linked document in a new window or tab_self - Opens the linked document in the same window/tab as it was clicked (this is default)_parent - Opens the linked document in the parent frame_top - Opens the linked document in the full body of the windowframename - Opens the linked document in a named frame For example If your requirement is to open the link in a new tab then just add a target="_blank" attribute to your links (anchor tags). Now when your visitors click that link, it will open in a new window or tab (depending on which web browser they are using and how they configured that browser).