THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HashChangeEvent newURL Property

Event Object Reference Event Object

Example

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

event.newURL;

The result could be:

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onhashchange#part5
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

Event Object Reference Event Object