The URLUtils.hash property returns a DOMString containing a '#' followed by the fragment identifier of the URL.
Note: This feature is available in Web Workers.
Note: In Firefox if the hash part of the URL contains encoded characters, hash will return the decoded URL part (bug 1093611). href, search and pathname however correctly return the still encoded URL parts.
Syntax
string = object.hash; object.hash = string;
Examples
// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/URLUtils.href#youhou"> element be in the document
var anchor = document.getElementByID("myAnchor");
var result = anchor.hash; // Returns:'#youhou'
Specifications
| Specification | Status | Comment |
|---|---|---|
| URL The definition of 'URLUtils.hash' in that specification. |
Living Standard | Initial definition |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | Not supported[1] | 22 (22)[1] | Not supported[1] | Not supported[1] | Not supported[1] |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | Not supported[1] | Not supported[1] | 22.0 (22)[1] | Not supported[1] | Not supported[1] | Not supported[1] |
[1] Though not grouped in a single abstract interface, this method is directly available on the interfaces that implement it, if this interface is supported.
See also
- The
URLUtilsinterface it belongs to.
Document Tags and Contributors
Tags:
Contributors to this page: azasypkin, Sebastianz, chrisdavidmills, teoli, kohei.yoshino, vishu_gawli
Last updated by:
azasypkin,

