MathMLAnchorElement: hash property

The hash property of the MathMLAnchorElement interface is a string containing a "#" followed by the fragment identifier of the <a> element's href. If the URL does not have a fragment identifier, this property contains an empty string, "".

See URL.hash for more information.

Value

A string.

Examples

Basic usage

Given this HTML:

html
<a id="myAnchor" href="https://example.com#examples"> ... </a>

you can get the hash of the anchor like this:

js
const mathAnchor = document.getElementById("myAnchor");
mathAnchor.hash; // '#examples'

Specifications

Specification
HTML
# dom-hyperlink-hash

Browser compatibility

See also

  • The MathML <a> element