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 ); } ...
0
votes
1answer
66 views

How to know the url that is calling the destination url using curl in the destination url?

Okay, I have this setup: //in example1.com, I am setting cURL <br /> $c = curl_init(); <br /> curl_setopt($c, CURLOPT_URL, 'http://example2.com'); //now in example2.com <br /> Is ...