Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 537 Bytes

open-all-links-in-new-tabs.mdx

File metadata and controls

19 lines (15 loc) · 537 Bytes
category created tags title
Trick
2021-04-13
HTML
Open all links in new tabs

We all know that setting the target="_blank" attribute to an individual link will open it in a new tab.

It's uncommon to see a real use case where you want all links on the page to be opened in a new tab. A site that only collects links of external resources might be an example.

In that case, rather than adding the attribute to all links, you just set it to the base tag:

<head>
    <base target="_blank" />
    ...
</head>