hello great community,
i hope my question is clear .... i use banner rotator for my site but i want to see which banner get better ctr (click through rate) . also to not confuse the vistor with the other links i would need to hide the <a href target>
i tried to embed piwik code but i haven't received any statics
here the current rotator code
var images = [],
index = 0;
images[0] = "<a href = 'http://' target='_blank'><img src='http://' alt='link1'></a>";
images[1] = "<a href = 'http://' target='_blank'><img src='http://' alt='link2'></a>";
images[2] = "<a href = 'http://' target='_blank'><img src='http://' alt='link3'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
thank u