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 have tried document.referrer but it's not working in Chrome.
$(document).ready(function () {
alert("previous url is: " + document.referrer);
});