I have following code to get a referrer in Javascript mode in a web page that don't support PHP and pass it to remote server: http://site.com/ref.php where with $ref = $_GET['referrer']; I get the referrer I want get also location i.e site where is installed script in my remote server with $loc = $_GET['location']; so I must insert document.location in this script but I don't know how now.
<script>
var src = "http://site.com/ref.php"
src += "?referrer=" + escape( document.referrer );
src += "&anticache=" + new Date().getTime();
var body = document.getElementsByTagName( "body" )[0];
var image = document.createElement( "img" );
image.src = src;
body.appendChild( image );
</script>
I have tried to add to script
src += "?location=" + escape( document.location ); but don't work
any help?
