1. Web
  2. Web APIs
  3. HTMLBaseElement
  4. target

HTMLBaseElement: target property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The target property of the HTMLBaseElement interface is a string that represents the default target tab to show the resulting output for hyperlinks and form elements.

It reflects the target attribute of the <base> element.

Value

A string representing the target. Its value can be:

Example

html
<head>
 <base target="_top" />
</head>
js
const baseElement = document.getElementsByTagName("base")[0];
console.log(baseElement.target); // Output: '_top'

Specifications

Specification
HTML
# dom-base-target

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /