Skip to content

Instantly share code, notes, and snippets.

@PaulBGD
Created June 20, 2015 03:49
Show Gist options
  • Save PaulBGD/38f5f2f2b76e80d1d1f0 to your computer and use it in GitHub Desktop.
Save PaulBGD/38f5f2f2b76e80d1d1f0 to your computer and use it in GitHub Desktop.
Check if someone is using adblock
setTimeout(function() {
var adsbygoogle = document.getElementsByClassName('adsbygoogle');
if (adsbygoogle && adsbygoogle.length > 0 && adsbygoogle[0].childNodes.length == 0) {
console.log('Please turn off adblock!');
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment