Javascript examples for DOM HTML Element:Anchor
The hostname property sets or gets the hostname part of the href attribute value.
Value | Description |
---|---|
hostname | Sets the hostname of a URL |
A String, representing the domain name or IP address of the URL
The following code shows how to Return the hostname of a link:
<!DOCTYPE html> <html> <body> <p><a id="myAnchor" href="http://www.example.com">Example link</a></p> <p>Click the button to change the hostname of the link above.</p> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from w w w.j a v a 2s . c o m*/ var x = document.getElementById("myAnchor").host; document.getElementById("demo").innerHTML = x; } </script> </body> </html>