Firefox Tomorrow

web api instance property

HTMLBaseElement: href property

View on MDN ↗

The href property of the HTMLBaseElement interface contains a string that is the URL to use as the base for relative URLs.

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

Value

A string that contains a URL, or the empty string ("") if the corresponding <base> element does not include the href attribute.

Examples

HTML with base URL

This example demonstrates that the href attribute in <base> is reflected in the href property of HTMLBaseElement.

<pre id="log"></pre>
const logElement = document.querySelector("#log");
function log(text) {
  logElement.innerText = text;
}
#log {
  height: 20px;
}

HTML

<base href="https://developer.mozilla.org/example" />

JavaScript

const base = document.getElementsByTagName("base")[0];
log(`base.href="${base.href}"`);

Result

Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.