HTMLAnchorElement: hash property - Web APIs | MDN

Value

A string.

Examples

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

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.