I need a YPN tracking type program. I've honestly looked, but can't seem to find one. Anyway, I'm sure some of you have used or are currently using one and would love your input, please.
There's one for adsense that I modified a while back that I now use on my site. I'll see if I can post it when I get home from work tonight.. if the code's not too ugly. In the mean time, if you want to make a simple script written for adsene to work with ypn, these are the changes you need to make: 1. add the "defer" attribute to the script element that has the code for detecting the focus event on the iframe element. This is necessary because the iframe element is written by javascript with ypn, so the script adding the click monitoring must be added after the page has been fully rendered. This comes down to making a script tag that looks something like this: <script type="text/javascript"> look something like this: <script type="text/javascript" defer="defer"> 2. The other change needed is to change the if statement that looks for the "go to" string at the beginning of the window.status variable so that it simply checks to make sure there is text in window.status. So basically look for the if statement that has window.status and "go to" referenced, and change it to this: if (window.status != "") If I recall correctly, that should be all that's needed to make most existing scripts work.