Tagged Questions
2
votes
3answers
5k views
How can i get the destination url in javascript onbeforeunload event?
I've searched for hours, but I couldn't find a solution for this.
window.onbeforeunload = warn;
This doesn't work:
function warn (e)
{
var destination = e.href;
alert(destination );
}
...