/* Link Pop script */ function aTagMod(pageID){ $$('a').each( function(aLink){ $(aLink).onclick = processLink.bindWithEvent(aLink,pageID); //console.log('tags upated'); }); } function processLink(e,pageID){ /**/ e = new Event(e); //e.stop(); var url = this.getProperty('href'); var insUrl = escape(url); if(this.hasClass('linktrack-use-title')){ var linkt = escape(this.getProperty('title')); //alert(this.getProperty('title')); }else{ var linkt = escape(this.innerHTML); } var urlProcess = "http://www.osu.edu/inc/linkPopularity/process.php"; var mouse = "&mouseX="+e.page.x+"&mouseY="+e.page.y+"&linkTitle="+linkt; var theData = "url="+insUrl+"&pageID="+pageID+mouse; var ajax = new Request({ url: urlProcess, method: 'get', data: theData, //update: 'ajaxExample', //evalScripts: true, /* this is the default */ onComplete: function(){ window.location = url; } }).send(); //return false; //breaks safari? // return false; was uncommented Sept 28, 2008. }; function runLP(){ //var pageID = 4; aTagMod(pageID); } window.addEvent("domready", runLP);