(function($){ $(document).ready(function() { /* Track those spending a long time on a page */ window.elapsed_time = 0 setInterval(function(){ window.elapsed_time += 1; var page_title = document.title; if (window.elapsed_time == 180) { _gaq.push(['_trackEvent', 'Reading Article', '3 minutes', page_title]); } else if (window.elapsed_time == 300) { _gaq.push(['_trackEvent', 'Reading Article', '5 minutes', page_title]); } else if (window.elapsed_time == 420) { _gaq.push(['_trackEvent', 'Reading Article', '7 minutes', page_title]); } else if (window.elapsed_time == 540) { _gaq.push(['_trackEvent', 'Reading Article', '9 minutes', page_title]); } else if (window.elapsed_time == 660) { _gaq.push(['_trackEvent', 'Reading Article', '11 minutes', page_title]); } }, 1000); /* Track scrolling to the bottom of the page */ window.has_scrolled_to_bottom = false; $(window).scroll(function() { if($(window).scrollTop() + $(window).height() == $(document).height()) { if (!window.has_scrolled_to_bottom) { window.has_scrolled_to_bottom = true; var page_title = document.title; _gaq.push(['_trackEvent', 'Scroll', 'Scroll to bottom', page_title]); } } }); /* Track external links */ jQuery('a').click(function() { try { href = $(this).attr('href'); if (href.match(/https?\:\/\//).length == 0) { return false; } /* Track telephone links */ if (href.match(/^tel\:/).length > 0) { _gaq.push(['_trackEvent', 'Click to call', $(this).text(), href]); return true; } if (href.indexOf(window.location['host']) < 0) { _gaq.push(['_trackEvent', 'External link', $(this).text(), href]); console.log("External link"); } } catch(err) { } }); /* Track any time the .phone class is clicked */ $('.phone').click(function(e) { _gaq.push(['_trackEvent', 'Clicked phone number', $(this).text()]); }); $('.tel').click(function(e) { _gaq.push(['_trackEvent', 'Clicked phone number', $(this).text()]); }); /* Track form submission */ $('.sendit').click(function(e) { _gaq.push(['_trackEvent', 'Form Submission', $(this).val()]); }); /* Track any outbound links */ $('a[href^="http://"]') .not('[href*="' + document.domain + '"]') .attr('target','_blank') .on('click', function(e) { var $this = $(this) ,url = $this.attr('href') ,newtab = ($this.attr('target') === '_blank' || e.metaKey || e.ctrlKey) ,testMode = false; window._gaq = window._gaq || []; try { if (testMode == false) { window._gaq.push(['_trackEvent', 'Outbound Links', e.currentTarget.host, url, 0]); } else if (testMode == true) { console.log('Test Mode: Logging outbound link to ' + url); } else { console.log('Tracking Error'); } if (!newtab) { e.preventDefault(); setTimeout(function(){ document.location = url; }, 100); } } catch (err){} }); }); })(jQuery);