Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 548 Bytes

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

File metadata and controls

19 lines (15 loc) · 548 Bytes
title category date topics
Open all links in new tabs
Trick
2021-04-13 13:39:00 +7
HTML

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>