if(typeof jQuery != 'undefined') { jQuery(document).ready(function() { jQuery('a.loggable').bind('mousedown', function(ev) { if(typeof(this.id) == 'string' && this.id) { if(typeof(_gaq) != 'undefined') { _gaq.push(['_trackEvent', 'viktigKlikk', this.id]); } jQuery.ajax({ url: '/ajax/ajax_logClick.php', data: 'elId=' + this.id + '&mb=' + ev.which }); } return true; }); }); }