|
cool code
if you know how to code PHP or perl etc., you can also record where does the click go like this
==================================================
original
function adclick() {
if(window.status.indexOf('go to') == 0) {
urchinTracker ('/aclick');
}
}
==================================================
modified
function adclick() {
if(window.status.indexOf('go to') == 0) {
var beacon_image = new Image;
beacon_image.src = "http://www.yourdomain.com/adrecord.php?record=" + window.status;
}
}
==================================================
where adrecord.php is the page with "record" passing as parameter and you can do some processing also.
btw, :p, you can add some timestamp and whatever to your analysis
cowren
|