The Location Hash property in HTML is used to return the anchor part of a URL. It can also be used to set the anchor part of the URL. It returns the string which represents the anchor part of a URL including the hash ‘#’ sign.
Syntax:
- It returns the hash property.
location.hash
- It is used to set the hash property.
location.hash = anchorname
Below program illustrates the Location hash property in HTML:
Example:
<!DOCTYPE html> <html> <head> <title>DOM Location hash property</title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM Location hash Property</h2> <p> For setting the anchor part to 'newlocationhash', double click the "Set Anchor" button: </p> <button ondblclick="mylocation()"> Set Anchor </button> <p id="hash"></p> <script> function mylocation() { location.hash = "newlocationhash"; var h = "The anchor part is now: " + location.hash; document.getElementById("hash").innerHTML = h; } </script> </body> </html> |
Output:

After click on the button:

Supported Browsers: The browsers supported by Location hash property are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- JavaScript | window.location and document.location Objects
- How to remove hash from window.location with JavaScript without page refresh ?
- HTML | DOM Location hostname Property
- HTML | DOM Location host Property
- HTML | DOM Location pathname Property
- HTML | DOM Location protocol Property
- HTML | DOM Location href Property
- HTML | DOM Location port Property
- HTML | DOM Location origin Property
- HTML | DOM Location Search Property
- HTML | DOM KeyboardEvent location Property
- HTML DOM document location Property
- HTML DOM Window.location Property
- HTML | DOM Anchor hash Property
- HTML | DOM Area hash Property
- HTML | DOM Location replace() Method
- HTML | DOM Location reload() Method
- HTML | Location assign( ) Method
- Python script to open a Google Map location on clipboard
- HTTP headers | Location
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.


