HTMLAnchorElement: href 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 HTMLAnchorElement.href property is a stringifier that returns a string containing the whole URL, and allows the href to be updated.

Value

Image for: Value

A string.

Examples

Image for: Examples
js
// An <a id="myAnchor" href="https://developer.mozilla.org/en-US/HTMLAnchorElement"> element is in the document
const anchor = document.getElementById("myAnchor");
anchor.href; // returns 'https://developer.mozilla.org/en-US/HTMLAnchorElement'

Specifications

Image for: Specifications
Specification
HTML
# dom-hyperlink-href-dev

Browser compatibility

Image for: Browser compatibility

See also

Image for: See also