Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to be able to detect if the user is using adblocking software when they visit my website. If they are using it, I want to display a message asking them to turn it off in order to support the project, like this website does.

If you enter to that site and your browser has some kind of adblock software enabled, then the site instead of showing the actual ads shows a little banner telling the users that the ad revenue is used for hosting the project and they should consider turning Adblock off.

I want to do that on my website, I'm using adsense ads on it, How can I do that?

share|improve this question

9 Answers

up vote 38 down vote accepted

http://thepcspy.com/read/how_to_block_adblock/

With jQuery:

function blockAdblockUser() {
    if ($('.myTestAd').height() == 0) {
        window.location = 'http://example.com/AdblockNotice.html';
    }
}

$(document).ready(function(){
    blockAdblockUser();
});

Of course, you would need to have a landing page for AdblockNotice.html, and the .myTestAd class needs to reflect your actual ad containers. But this should work.

share|improve this answer

Not a direct answer, but I'd put the message behind the ad to be loaded... rather that trying to detect it, it'd just show up when the ad doesn't.

share|improve this answer

To detect if the user is blocking ads, all you have to do is find a function in the ad javascript and try testing for it. It doesn't matter what method they're using to block the ad. Here's what it looks like for Google Adsense ads:

if(typeof(window.google_render_ad)=="undefined") 
{ 
    //They're blocking ads, display your banner
}

This method is outlined here: http://www.metamorphosite.com/detect-web-popup-blocker-software-adblock-spam

share|improve this answer
1  
google_render_ad is now undefined anytime, typeof(window.google_jobrunner) != 'object' works for me. – Dmitry Korotovsky Mar 10 at 16:31

They're utilizing the fact that Google's ad code creates an iframe with the id "iframe". So as long as you don't already have something on your page with that ID, this'd work for you too.

<p id="ads">
<script type="text/javascript"><!--
google_ad_client = "their-ad-code-here";
/* 160x600, droite */
google_ad_slot = "their-ad-code-here";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

</p>

<script type="text/javascript"><!--
if(document.getElementsByTagName("iframe").item(0) == null)
{
    document.write("<div style='width:160px; height:600px; padding-top: 280px; margin-left:5px;border:1px solid #000000; text-align:center; font-family:century gothic, arial, helvetica, sans serif;padding-left:5px;padding-right:5px;'>Advertising seems to be blocked by your browser.<br /><br /><span style='font-size:10px'>Please notice that advertising helps us to host the project.<br /><br />If you find these ads intrusive or inappropriate, please contact me.</span><img src='http://www.playonlinux.com/images/abp.jpg' alt='Adblock Plus' /></div>");
}
--></script>
share|improve this answer

That website probably doesn't directly detect adblockers. Thee appears to be a layer behind the ad, which is in the HTML whether the adblocker is loaded or not. The trick is, it's only visible if there's no ad in front to cover it up.

share|improve this answer

Ad blockers work in two ways- they prevent requests to known ad servers such as Adsense, DoubleClick, Adtech etc, and they also hide page elements based on pattern matching e.g. an image called "ad.jpg" or a div with an id "leaderboard-ad.jpg".

We've gone to some trouble to write our own script for detecting adblock. It was pretty tricky making it work across all the major browsers and ad blocking plugins so you're probably better off finding something someone has written and using it. There are plenty of options out there!

share|improve this answer

Sup guys,

Here is a awesome adblock detect script, tested with the best and strongest adblocker on both firefox and chrome.

I've tested this several times and it works 100%

Replace 360haven.com with your site name.

<div id="360haven">
Your google adsense code here

    <script type="text/javascript"><!--
    (function(){var d=document;var i=d.getElementsByTagName('iframe');if(google_ad_client!=null||(window.getComputedStyle?d.defaultView.getComputedStyle(i[i.length-1],null).getPropertyValue('display'):i[i.length-1].currentStyle['display'])=='none'){d.body.innerHTML+='<style>html,body{margin:0;padding:0;height:100%}</style><center><tr><span style="color: Deepskyblue; padding:10px; margin-bottom:10px; text-shadow: Deepskyblue 1px 1px 10px; font-family: comic sans ms; padding:10px; margin-bottom:10px; font-size: 15pt;">Adblock Software Detected!!</color></span></span><br><br><span style="color: Deepskyblue; text-shadow: Deepskyblue 1px 1px 10px;"><span style="font-family: comic sans ms; font-size: 11pt;"> Hello Guest, You are using adblocking software. Ads are a general way to cover server costs.<br> Please add 360haven.com to your whitelist.</color></span></center></tr>'}})()
    //--></script>
</div>

Live Demo: http://www.360haven.com Don't forget to turn on your adblocker lol.

share|improve this answer
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>var adb=true;</script>
<script src="./getbanner.cfm?"></script>
<script>
$(document).ready(function(){if(adb)alert('AdBlock!');});
</script>

and in getbanner.cfm file:

adb = false;

I think it's easiest way to detect adblock.

share|improve this answer
other blocked files: easylist-downloads.adblockplus.org/easylist.txt it's default AdBlock filter – mikas Mar 21 at 0:47

I know there are already enough answers, but since this question comes up on Google searched for "detect adblock" at the topic, I wanted to provide some insight in case you're not using adsense.

Specifically, with this example you can detect if the default Adblock-list provided by Firefox Adblock is used. It takes advantage that in this blocklist there is an element blocked with the CSS id #bottomAd. If I include such an element in the page and test for it's height, I know whether adblocking is active or not:

<!-- some code before -->
<div id="bottomAd" style="font-size: 2px;">&nbsp;</div>
<!-- some code after -->

The rest is done via the usual jQuery suspect:

$(document).ready( function() {
  window.setTimeout( function() {
    var bottomad = $('#bottomAd');
    if (bottomad.length == 1) {
      if (bottomad.height() == 0) {
        // adblocker active
      } else {
        // no adblocker
      }
    }      
  }, 1);
}

As can be seen, I'm using setTimeout with at least a timeout of 1ms. I've tested this on various browsers and most of the time, directly checking for the element in ready always returned 0; no matter whether the adblocker was active or not. I was having two ideas about this: either rendering wasn't yet done or Adblock didn't kick in yet. I didn't bother to investigate further.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.