HTMLAreaElement.hostname
The HTMLAreaElement.hostname
property is a USVString
containing the domain of the URL.
Syntax
// Getter string = area.hostname; // Setter area.hostname = string;
Examples
// An <area id="myArea" href="/en-US/docs/HTMLAreaElement"> element is in the document const area = document.getElementById("myArea"); HTMLAreaElement.hostname; // returns 'developer.mozilla.org'
Specifications
Specification |
---|
HTML Standard (HTML) # dom-hyperlink-hostname-dev |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
hostname |
1 |
12 |
1 |
5 |
15 |
1 |
1 |
18 |
4 |
14 |
1 |
1.0 |
See also
- The
HTMLAreaElement
interface it belongs to.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement/hostname