HTMLAnchorElement: hostname property

The HTMLAnchorElement.hostname property is a string containing the domain of the URL.

Value

A string.

Examples

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

Specifications

Specification
HTML Standard
# dom-hyperlink-hostname-dev

Browser compatibility

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

See also