Let's say a user goes from greatsite.com/uno#argument to coolsite.com/dos. After some interaction on the second page, I need to send it back to my referrer using Javascript:
window.location = document.referrer;
The problem with the launch is that document.referrer loses hash values. The user is redirected to the .com / uno website without #argument. The page does not work because its javascript depends on this argument.
source share