Cambiar el tamaño de la ventana de seguimiento a través de Google Analytics - Trucos CSS

Anonim

Sparkbox tiene este fragmento para ayudar a determinar con qué frecuencia se cambia realmente el tamaño de las ventanas del navegador.

(function() ( var resizeTimer; // Assuming we have jQuery present $( window ).on( "resize", function() ( // Use resizeTimer to throttle the resize handler clearTimeout( resizeTimer ); resizeTimer = setTimeout(function() ( /* Send the event to Google Analytics * * https://developers.google.com/analytics/devguides/collection/gajs/methods/gaJSApiEventTracking * _trackEvent(category, action, opt_label, opt_value, opt_noninteraction) */ var $window = $( window ); _gaq.push( ( "_trackEvent", "User Actions", "Browser Resize", $window.width() + " x " + $window.height() ) ); ), 1000); )); ))();

Tenga en cuenta lo fácil que es rastrear eventos en Google Analytics. Eso se puede usar para casi cualquier cosa.