How to get the previous page URL using JavaScript? [duplicate]

You can use the following to get the previous URL.

var oldURL = document.referrer;
alert(oldURL);

Leave a Comment