Created
July 9, 2012 14:51
-
-
Save robtarr/3076998 to your computer and use it in GitHub Desktop.
Google Analytics Resize Tracking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment