The newURL read-only property of the HashChangeEvent interface returns the new URL to which the window is navigating.
Syntax
let newEventUrl = event.newURL;
Value
A DOMString.
Example
window.addEventListener('hashchange', function(event) {
console.log('Hash changed to ' + event.newURL);
});
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'HashChangeEvent: newURL' in that specification. |
Living Standard |
