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

desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
target

See also