How to get the previous page URL? can we get this using the window.history ?
Note - We only need that URL and no need to perform any redirection.
How to get the previous page URL? can we get this using the window.history ?
Note - We only need that URL and no need to perform any redirection.
I am using document.referrer
, it will return the previous URL you have visited
EDIT: I also found this code snippet, where you store the previous URL using cookies.
$.cookie("previousUrl", window.location.href, {path:"/"});
You can assign the cookie in a variable to retrieve its value or something like that