HTML | DOM Anchor hash Property
The DOM Anchor hash Property in HTML DOM is used to set or return the anchor part of the href attribute value. The anchor part is the part of the URL after the hash sign(#).
Syntax:
- It returns the hash property.
anchorObject.hash
- It is used to set the hash property.
anchorObject.hash = anchorname
Property Values: It contains the value i.e anchorname which is used to specify the anchor part of the URL.
Return value: It returns a string value which represents the anchor part of the URL including the hash sign(#).
Example-1:This Example returns the hash Property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Anchor hash Property </ title > </ head > < body > < center > < h1 >GeeksForGeeks</ h1 > < h2 > DOM Anchor hash 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").hash; document.getElementById( "sudo").innerHTML = x; } </ script > " </ center > </ body > </ html > |
Output:
Before Clicking On Button :
After Clicking On Button:
Example-2 : This Example sets the hash Property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Anchor hash Property </ title > </ head > < body > < center > < h1 >GeeksForGeeks</ h1 > < h2 > DOM Anchor hash 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").hash = "The hash value is changed now!"; 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 hash property are listed below:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | DOM Anchor rel Property
- HTML | DOM Anchor hostname Property
- HTML | DOM Anchor host Property
- HTML | DOM Anchor username Property
- HTML | DOM Anchor Text Property
- HTML | DOM Anchor target Property
- HTML | DOM Anchor download Property
- HTML | DOM Anchor password Property
- HTML | DOM Anchor port Property
- HTML | DOM Anchor protocol Property
- HTML | DOM Anchor search Property
- HTML | DOM Anchor type Property
- HTML | DOM Anchor pathname Property
- HTML | DOM Anchor href Property
- HTML | DOM Anchor hreflang 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.
Improved By : shubham_singh