Search code examples
htmltabshyperlinkwindowhref

Open link in new tab or window


Is it possible to open an a href link in a new tab instead of the same tab?

<a href="http://your_url_here.html">Link</a>

Solution

  • You should add the target="_blank" and rel="noopener noreferrer" in the anchor tag.

    For example:

    <a target="_blank" rel="noopener noreferrer" href="http://your_url_here.html">Link</a>
    

    Adding rel="noopener noreferrer" is not mandatory, but it's a recommended security measure. More information can be found in the links below.

    Source: