Baseline Widely available
The target
property of the HTMLAnchorElement
interface is a string that indicates where to display the linked resource.
It reflects the target
attribute of the <a>
element.
A string representing the target. Its value can be:
<frame>
._blank
, _self
, _parent
, or _top
.<a href="www.example1.com" class="link1" target="_blank">example1</a>
const link = document.querySelector(".link1");
console.log(link.target); // output: "_blank"
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4