Back to Content

HashChangeEvent: newURL property

files/en-us/web/api/hashchangeevent/newurl/index.md

latest389 B
Original Source

{{APIRef("HTML DOM")}}

The newURL read-only property of the {{domxref("HashChangeEvent")}} interface returns the new URL to which the window is navigating.

Value

A string.

Examples

js
window.addEventListener("hashchange", (event) => {
  console.log(`Hash changed to ${event.newURL}`);
});

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}