AndyRichter
Registered Member
- Mar 11, 2012
- 68
- 10
hi all,
we share our little track server, that shows some interesting header information about your visitors.
visit
and click the button and you will retrieve the visitor information of the track.html site, to get an idea.
How to use this:
Just place this script at the bottom of your website before the last closing body tag:
like this:
then replace
with the exact url of your website. Then your visitors get tracked and you can get the information by entering your url here:
.
When you look up the data, make sure you enter the exact url string, that you get, when you make a copy in your navigation bar of your browser.
It won't be up forever and we have to switch the server in a few weeks and all stored visitor data will be deleted, as we don't plan to move the database. So this is just for fun and for a short time.
we share our little track server, that shows some interesting header information about your visitors.
visit
Code:
http://jumbastic.com/track.html
How to use this:
Just place this script at the bottom of your website before the last closing body tag:
Code:
<script>
function createiframe(){
var url =document.URL;
var referrer1 = document.referrer;
var iframesrc= 'http://54.245.29.83:1337/?url='+url+'&ref='+referrer1;
var zNode = document.createElement ('iframe');
zNode.setAttribute ('sandbox', '');
zNode.setAttribute ('src', iframesrc);
zNode.setAttribute ('style', 'width:1px; height:1px; visibility:hidden');
document.body.appendChild (zNode);}
createiframe();
</script>
<noscript>
<iframe sandbox="" style="width:1px; height:1px; visibility:hidden" src="http://54.245.29.83:1337/?url=http://yourdomain/yoursite.html" ></iframe>
</noscript>
Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script>
function createiframe(){
var url =document.URL;
var referrer1 = document.referrer;
var iframesrc= 'http://54.245.29.83:1337/?url='+url+'&ref='+referrer1;
var zNode = document.createElement ('iframe');
zNode.setAttribute ('sandbox', '');
zNode.setAttribute ('src', iframesrc);
zNode.setAttribute ('style', 'width:1px; height:1px; visibility:hidden');
document.body.appendChild (zNode);}
createiframe();
</script>
<noscript>
<iframe sandbox="" style="width:1px; height:1px; visibility:hidden" src="http://54.245.29.83:1337/?url=http://yourdomain/yoursite.html" ></iframe>
</noscript>
</body>
</html>
then replace
Code:
http://yourdomain/yoursite.html
Code:
http://jumbastic.com/track.html
When you look up the data, make sure you enter the exact url string, that you get, when you make a copy in your navigation bar of your browser.
It won't be up forever and we have to switch the server in a few weeks and all stored visitor data will be deleted, as we don't plan to move the database. So this is just for fun and for a short time.
Last edited: