View Single Post
Old 04-09-2006, 01:57 AM   #3 (permalink)
cowren
Inactive
 
Join Date: 03-29-06
Posts: 17
iTrader: 0 / 0%
Latest Blog:
None

cowren is liked by many
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
cowren is offline   Reply With Quote