How can I tell if a web client is blocking ads? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:23:24Z http://stackoverflow.com/feeds/question/2472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads 3 How can I tell if a web client is blocking ads? Mark Harrison 2008-08-05T15:30:42Z 2008-08-07T00:31:18Z <p>I'd like to get some statistics on how many people coming to my site have set their browser to block ads. Any tips on the best way to do this?</p> http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads/2476#2476 2 Answer by Vaibhav for How can I tell if a web client is blocking ads? Vaibhav 2008-08-05T15:32:21Z 2008-08-05T15:32:21Z <p>I suppose you could compare the ad prints with the page views on your website (which you can get from your analytics software).</p> http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads/2477#2477 7 Answer by GateKiller for How can I tell if a web client is blocking ads? GateKiller 2008-08-05T15:34:18Z 2008-08-05T15:34:18Z <p>Since programs like AdBlock actually never request the advert, you would have to look the server logs to see if the same user accessed a webpage but didn't access an advert. This is assuming the advert is on the same server.</p> <p>If your adverts are on a separate server, then I would suggest it's impossible to do so.</p> <p>The best way to stop users from blocking adverts, is to have inline text adverts which are generated by the server and dished up inside your html.</p> http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads/2478#2478 6 Answer by Jon Works for How can I tell if a web client is blocking ads? Jon Works 2008-08-05T15:37:34Z 2008-08-05T15:37:34Z <p>Add the user id to the request for the ad:</p> <pre><code>&lt;img src="./ads/viagra.jpg?{user.id}"/&gt;<br></code></pre> <p>that way you can check what ads are seen by which users.</p> http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads/2479#2479 3 Answer by UberAlex for How can I tell if a web client is blocking ads? UberAlex 2008-08-05T15:37:36Z 2008-08-05T15:37:36Z <p>You need to think about the different ways that ads are blocked. The first thing to look at is whether they are running noscript, so you could add a script that would check for that. </p> <p>The next thing is to see if they are blocking flash, a small movie should do that.</p> <p>If you look at the adblock site, there is some indication of how it does blocking: <a href="http://adblockplus.org/en/faq_internal#elemhide" rel="nofollow">http://adblockplus.org/en/faq_internal#elemhide</a></p> <p>If you look further down that page, you will see that conventional chrome probing will not work, so you need to try and parse the altered DOM.</p> http://stackoverflow.com/questions/2472/how-can-i-tell-if-a-web-client-is-blocking-ads/4187#4187 3 Answer by Michal Sznajder for How can I tell if a web client is blocking ads? Michal Sznajder 2008-08-07T00:31:18Z 2008-08-07T00:31:18Z <p>AdBlock forum <a href="http://adblockplus.org/forum/viewtopic.php?t=2107&amp;postdays=0&amp;postorder=asc&amp;start=60" rel="nofollow">says</a> this is used to detect AdBlock. After some tweaking you could use this to gather some statistics.</p> <pre><code>&lt;script language="JavaScript" type="text/JavaScript"&gt;<br><br>setTimeout('detect_abp()', 10000);<br>var isFF = (navigator.userAgent.indexOf("Firefox") &gt; -1) ? true : false;<br>var hasABP = false;<br><br>function detect_abp()<br>{<br> if(isFF)<br> {<br><br> if(Components.interfaces.nsIAdblockPlus != undefined)<br> {<br> hasABP = true;<br> }<br> else<br> {<br> var AbpImage = document.createElement("IMG");<br> AbpImage.id = 'abp_detector';<br> AbpImage.src = '/textlink-ads.jpg';<br> AbpImage.style.width = '0px';<br> AbpImage.style.height = '0px';<br> AbpImage.style.top = '-1000px';<br> AbpImage.style.left = '-1000px';<br> document.body.appendChild(AbpImage);<br> hasABP = (document.getElementById('abp_detector').style.display == 'none');<br><br> var e = document.getElementsByTagName("iframe");<br> for (var i = 0; i &lt; e.length; i++)<br> {<br> if(e[i].clientHeight == 0)<br> {<br> hasABP = true;<br> }<br> }<br> if(hasABP == true)<br> {<br> history.go(1);<br> location = "http://www.tweaktown.com/supportus.html";<br> window.location(location); <br> }<br> }<br> }<br> }<br> &lt;/script&gt; <br></code></pre>