Javascript examples for Browser Object Model:Location
The hostname property sets or gets the hostname of a URL.
Set the hostname property with the following Values
Value | Type | Description |
---|---|---|
hostname | String | Sets the hostname of the URL |
A String, representing the domain name, or the IP address of a URL
The following code shows how to return the hostname of the current URL:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from ww w. j av a 2s . c o m*/ var x = location.hostname; document.getElementById("demo").innerHTML= x; } </script> </body> </html>