How to get the previous page url using jquery?
I am using the following code to get the current page location
$(document).ready(function() { var path
We have document.referrer for this, but it is not on which we can relay. This could be saved, could be not
$(document).ready(function() { var referrer = document.referrer; });
The better approach is to add a cookie to store the previous-url in the browser.