HashChangeEvent newURL Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

HashChangeEvent newURL Property

❮ DOM Events ❮ HashChangeEvent

Example

When the hash has been changed, get the URL we are navigating to:

event.newURL;
Try it Yourself »

Definition and Usage

The newURL property returns the URL of the document, after the hash (anchor part) has been changed.

This is the URL that was navigated to. To get the URL that was navigated away from, use the oldURL property.

This property is read-only.

Tip: To set or return the hash of a URL, use the location.hash property.


Browser Support

The numbers in the table specify the first browser version that fully supports the property.

Property
newURL 5.0 Not supported 6.0 5.0 10.6

Syntax

event.newURL

Technical Details

Return Value: A String, representing the URL that was navigated to

❮ DOM Events ❮ HashChangeEvent