Skip to content

Instantly share code, notes, and snippets.

View adambirds's full-sized avatar

Adam Birds adambirds

View GitHub Profile
@adambirds
adambirds / Hide-AdWidget.html
Created January 22, 2019 20:48
Hide ad widget if ad blocker is on.
<script>
(function(){
var test = document.createElement('div');
test.innerHTML = '&nbsp;';
test.className = 'adsbox';
document.body.appendChild(test);
window.setTimeout(function() {
if (test.offsetHeight === 0) {
document.getElementById("et_ads-2").style.display = "None";
}