HTML | DOM Anchor host Property
The DOM Anchor host Property in HTML DOM is used to set or return the hostname and post part of the href attribute value.
Syntax:
- It returns the host property.
anchorObject.host
- It is used to set the host property.
anchorObject.host = hostname:port
Property Values: It contains the value hostname:port Which specify the hostname and the port number of a URL.
Return Value: It returns a string value which represents the domain name and the port number of the URL.
Example:This Example returns the host Property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Anchor host Property </ title > </ head > < body > < center > < h1 >GeeksForGeeks</ h1 > < h2 > DOM Anchor host Property </ h2 > < p >Welcome to < a href = id = "GFG" rel = "nofollow" hreflang = "en-us" target = "_self" > GeeksforGeeks </ a > </ p > < button onclick = "myGeeks()" > Submit </ button > < p id = "sudo" style="color:green; font-size:25px;"> </ p > < script > function myGeeks() { var x = document.getElementById( "GFG").host; document.getElementById( "sudo").innerHTML = x; } </ script > " </ center > </ body > </ html > |
Output:
Before Clicking On Button:
After Clicking On Button:
Example-2: This Example sets the Host Property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Anchor host Property </ title > </ head > < body > < center > < h1 >GeeksForGeeks</ h1 > < h2 > DOM Anchor host Property </ h2 > < p >Welcome to < a href = id = "GFG" rel = "nofollow" hreflang = "en-us" target = "_self" > GeeksforGeeks </ a > </ p > < button onclick = "myGeeks()" > Submit </ button > < p id = "sudo" style="color:green; font-size:25px;"> </ p > < script > function myGeeks() { var x = document.getElementById("GFG").host = "www.geeksforgeeks.org:443"; document.getElementById( "sudo").innerHTML = x; } </ script > " </ center > </ body > </ html > |
Output :
Before Clicking On Button:
After Clicking On Button:
Supported Browsers: The browser supported by DOM Anchor host property are listed below:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | DOM Area host Property
- HTML | DOM Location host Property
- HTML | DOM Anchor rel Property
- HTML | DOM Anchor hostname Property
- HTML | DOM Anchor target Property
- HTML | DOM Anchor Text Property
- HTML | DOM Anchor hash Property
- HTML | DOM Anchor download Property
- HTML | DOM Anchor password Property
- HTML | DOM Anchor username Property
- HTML | DOM Anchor hreflang Property
- HTML | DOM Anchor port Property
- HTML | DOM Anchor pathname Property
- HTML | DOM Anchor href Property
- HTML | DOM Anchor origin Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.