Is it possible to measure display ads views?

Associate
Joined
26 Jun 2005
Posts
1,487
We are looking into some advertising opportunities and one option is to have display ads on a high traffic site. While I was browsing the site talking to the sites Ad guy he was describing the Ads but I couldn't see them as I have Firefox and Chrome flash block plugins. The Ads are AdSense driven it seems.

What I'm interested in finding out is whether it is possible to determine whether a Flash Ad is displayed or blocked. Would Analytics show this? Also would it is possible to determine whether users browing a site have these Flash block plugins installed or not?

Thanks.
 
Well Adsense will always count impressions, and I'd be surprised if there isn't some logic in there to account for adblocks, if it isn't shown it shouldn't be an impression.

If you're looking for stats on the amount of blocks then that's not something I've seen before, but you could whip up a script to gather that. e.g.

Code:
<script type="text/javascript">
        jQuery(document).ready(function(){
            if (jQuery('#myAdContainer').height() == 0) {
add to a counter for the amount of blocks as a 0 height container means your ads havnt loaded
            }
        });
</script>
 
Well Adsense will always count impressions, and I'd be surprised if there isn't some logic in there to account for adblocks, if it isn't shown it shouldn't be an impression.

If you're looking for stats on the amount of blocks then that's not something I've seen before, but you could whip up a script to gather that. e.g.

Code:
<script type="text/javascript">
        jQuery(document).ready(function(){
            if (jQuery('#myAdContainer').height() == 0) {
add to a counter for the amount of blocks as a 0 height container means your ads havnt loaded
            }
        });
</script>

Seems like a nice simple solution
 
Back
Top Bottom