Shoora
10/3/2018 - 5:57 PM

Pushing custom events to Google Universal Analytics (analytics.js).

Pushing custom events to Google Universal Analytics (analytics.js).

jQuery(document).ready(function ($) {
	$('#navquote').on('click', function() {
	  ga('send', 'event', 'Quick Quote Call To Action', 'click', 'Launch Lightbox Form');
	});
	$('#headerphone').on('click', function() {
	  ga('send', 'event', 'Phone Number Touch/Click', 'click', 'Header');
	});
	$('#footerphone').on('click', function() {
	  ga('send', 'event', 'Phone Number Touch/Click','click', 'Footer');
	});
});