HTMLAnchorElement: hash property - Web APIs | MDN
Value
A string.
Examples
Getting the hash from an anchor link
Given this HTML
html
<a id="myAnchor" href="/en-US/docs/Web/API/HTMLAnchorElement/hash#examples">
Examples
</a>
you can get the hash of the anchor like this:
js
const anchor = document.getElementById("myAnchor");
anchor.hash; // '#examples'
Specifications
| Specification |
|---|
| HTML # dom-hyperlink-hash-dev |
Browser compatibility
See also
- The
HTMLAnchorElementinterface it belongs to.