My requirement is to change the URL of the current page on clicking refresh icon or ctrl+R. That is on refresh, reload another page(different URL). And it should support all browsers. I have tried the below snippet. But its not working.
window.onbeforeunload = function(e) {
window.location.href = 'www.google.com';
};
where 'google.com' should be the URL of my page on refreshing the current page. But it's nothappening with the window.onbeforeunload().