Javascript examples for DOM HTML Element:Anchor
The host property sets or gets the hostname and port part of the href attribute value.
Value | Description |
---|---|
hostname:port | Sets the hostname and port number of a URL |
A String, representing the domain name or IP address and port number of the URL.
The following code shows how to Return the hostname and port number 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() {// w ww. j a v a 2 s. co m var x = document.getElementById("myAnchor").host; document.getElementById("demo").innerHTML = x; } </script> </body> </html>