HTMLAnchorElement: target property

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.

Value

A string representing the target. Its value can be:

Example

html
<a href="www.example1.com" class="link1" target="_blank">example1</a>
js
const link = document.querySelector(".link1");
console.log(link.target); // output: "_blank"

Specifications

Specification
HTML Standard
# dom-a-target

Browser compatibility

BCD tables only load in the browser

See also