Created
February 20, 2015 15:37
-
-
Save hieblmedia/29c93d3b45e4da97147c to your computer and use it in GitHub Desktop.
Detect Adblock using user and log in Analytics
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
// Found here: http://www.labnol.org/internet/adblock-with-google-analytics/28819/ | |
window.onload = function() { | |
// Delay to allow the async Google Ads to load | |
setTimeout(function() { | |
// Get the first AdSense ad unit on the page | |
var ad = document.querySelector("ins.adsbygoogle"); | |
// If the ads are not loaded, track the event | |
if (ad && ad.innerHTML.replace(/\s/g, "").length == 0) { | |
if (typeof ga !== 'undefined') { | |
// Log an event in Universal Analytics | |
// but without affecting overall bounce rate | |
ga('send', 'event', 'Adblock', 'Yes', {'nonInteraction': 1}); | |
} else if (typeof _gaq !== 'undefined') { | |
// Log a non-interactive event in old Google Analytics | |
_gaq.push(['_trackEvent', 'Adblock', 'Yes', undefined, undefined, true]); | |
} | |
} | |
}, 2000); // Run ad block detection 2 seconds after page load | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment