I've looked and am still looking around for a solution that we had setup months ago using Google Web Optimizer which is now being pushed out the door and replaced with the Adwords Experiments. The solution was an edit to the code that's placed on the landing pages that registered clicks on any link on the page.

If you don't know what I'm talking about, this guy explains Experiments - but nothing on "click anywhere conversions".

This link here seems to touch on setting up something to this effect but it's not that clear.

The following was the edit in the code, in the old GWO optimizer javascript, highlighted in red.

Code:

<script type="text/javascript">  var _gaq = _gaq || [];  _gaq.push(['gwo._setAccount', 'UA-88888888-3']);  _gaq.push(['gwo._trackPageview', '/88888888/test']);
  function doGoal(that) {   try {    _gaq.push(['gwo._trackPageview', '/88888888/goal']);
    setTimeout('document.location = "' + that + '"', 100)   }   catch(err){}  }   (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })();</script>
Now the code looks like this:

Code:

<script>function utmx_section(){}
function utmx(){}(function(){
var k='88888888-1',d=document,l=d.location,c=d.cookie;

if(l.search.indexOf('utm_expid='+k)>0)return;

function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){
var j=c.indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
length:j))}}}

var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write('<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+'" type="text/javascript" charset="utf-8"></sc'+'ript>')})();


</script>

<script>utmx('url','A/B');</script>
Does anyone have an idea of how this can be setup? Basically once someone lands on the page, any click, anywhere should be counted as a conversion.

Thanks all!