<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: FeedBurner Network Ad Default Problem</title>
	<atom:link href="http://www.johnchow.com/feedburner-network-ad-default-problem/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johnchow.com/feedburner-network-ad-default-problem/</link>
	<description>The Miscellaneous Ramblings of a Dot Com Mogul</description>
	<pubDate>Mon, 01 Dec 2008 20:57:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: The sky of Daemon! &#187; 收获与分享：2006年12月08日</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11883</link>
		<dc:creator>The sky of Daemon! &#187; 收获与分享：2006年12月08日</dc:creator>
		<pubDate>Fri, 08 Dec 2006 02:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11883</guid>
		<description>[...] FeedBurner Network Ad Default Problem « John Chow dot Com [...]</description>
		<content:encoded><![CDATA[<p>[...] FeedBurner Network Ad Default Problem « John Chow dot Com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 美味饭&#187; Blog Archive &#187; links for 2006-12-07</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11798</link>
		<dc:creator>美味饭&#187; Blog Archive &#187; links for 2006-12-07</dc:creator>
		<pubDate>Thu, 07 Dec 2006 15:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11798</guid>
		<description>[...] FeedBurner Network Ad Default Problem FeedBurner is only able to fill about 1/3 of my inventory – 2/3 of the time, there is nothing to show. (tags: feedburner ad) [...]</description>
		<content:encoded><![CDATA[<p>[...] FeedBurner Network Ad Default Problem FeedBurner is only able to fill about 1/3 of my inventory – 2/3 of the time, there is nothing to show. (tags: feedburner ad) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Chow</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11664</link>
		<dc:creator>John Chow</dc:creator>
		<pubDate>Thu, 07 Dec 2006 00:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11664</guid>
		<description>Wow! Thanks!</description>
		<content:encoded><![CDATA[<p>Wow! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno Torres</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11653</link>
		<dc:creator>Bruno Torres</dc:creator>
		<pubDate>Wed, 06 Dec 2006 23:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11653</guid>
		<description>I've made a piece of code to show alternate ads of FAN site ads.
I did it primarily for adsense, but they told me it's  against their TOS, so I stopped using it. However you can use to any other ads or affiliate program you want.
The magic is to create a div with display:none in its style and check via DOM for the presence of a div having the class "feedburner300250AdBlock", or for part of it using a regex, feedburner.+AdBlock, for example.
The code is like this:
&lt;code&gt;
&#60;div class="adbottom" id="fbalternate"&#62;
&#62; &#60;!-- ADSENSE CODE GOES HERE --&#62;
&#62; &#60;/div&#62;
&#62; &#60;script type="text/javascript"&#62;
&#62;&#160;&#160;&#160;&#160;var divs = document.getElementsByTagName('div');
&#62;&#160;&#160;&#160;&#160;var fbad = false;
&#62;&#160;&#160;&#160;&#160;for (var i=0, div; div=divs[i]; i++)
&#62;&#160;&#160;&#160;&#160;{
&#62;&#160;&#160;&#160;&#160;&#160;&#160;if (div.className.match(/feedburner.+AdBlock/))
&#62;&#160;&#160;&#160;&#160;&#160;&#160;{
&#62;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;fbad = true;
&#62;&#160;&#160;&#160;&#160;&#160;&#160;}
&#62;&#160;&#160;&#160;&#160;}
&#62;&#160;&#160;&#160;&#160;if (!fbad)
&#62;&#160;&#160;&#160;&#160;{
&#62;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById('fbalternate').style.display = 'block';
&#62;&#160;&#160;&#160;&#160;}
&#62; &#60;/script&#62;
&#62; 
&#62; On CSS:
&#62; 
&#62; #fbalternate{ display:none; }
&lt;/code&gt;

I hope it helps you.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve made a piece of code to show alternate ads of FAN site ads.<br />
I did it primarily for adsense, but they told me it&#8217;s  against their TOS, so I stopped using it. However you can use to any other ads or affiliate program you want.<br />
The magic is to create a div with display:none in its style and check via DOM for the presence of a div having the class &#8220;feedburner300250AdBlock&#8221;, or for part of it using a regex, feedburner.+AdBlock, for example.<br />
The code is like this:<br />
<code><br />
&lt;div class="adbottom" id="fbalternate"&gt;<br />
&gt; &lt;!-- ADSENSE CODE GOES HERE --&gt;<br />
&gt; &lt;/div&gt;<br />
&gt; &lt;script type="text/javascript"&gt;<br />
&gt;&#160;&#160;&#160;&#160;var divs = document.getElementsByTagName('div');<br />
&gt;&#160;&#160;&#160;&#160;var fbad = false;<br />
&gt;&#160;&#160;&#160;&#160;for (var i=0, div; div=divs[i]; i++)<br />
&gt;&#160;&#160;&#160;&#160;{<br />
&gt;&#160;&#160;&#160;&#160;&#160;&#160;if (div.className.match(/feedburner.+AdBlock/))<br />
&gt;&#160;&#160;&#160;&#160;&#160;&#160;{<br />
&gt;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;fbad = true;<br />
&gt;&#160;&#160;&#160;&#160;&#160;&#160;}<br />
&gt;&#160;&#160;&#160;&#160;}<br />
&gt;&#160;&#160;&#160;&#160;if (!fbad)<br />
&gt;&#160;&#160;&#160;&#160;{<br />
&gt;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(&#8217;fbalternate&#8217;).style.display = &#8216;block&#8217;;<br />
&gt;&#160;&#160;&#160;&#160;}<br />
&gt; &lt;/script&gt;<br />
&gt;<br />
&gt; On CSS:<br />
&gt;<br />
&gt; #fbalternate{ display:none; }<br />
</code></p>
<p>I hope it helps you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Feedburner nur ein drittel Werbeanzeigen Tips for Blogger</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11233</link>
		<dc:creator>&#187; Feedburner nur ein drittel Werbeanzeigen Tips for Blogger</dc:creator>
		<pubDate>Tue, 05 Dec 2006 04:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11233</guid>
		<description>[...] Den Artikel von John Chow findet Ihr hier! [...]</description>
		<content:encoded><![CDATA[<p>[...] Den Artikel von John Chow findet Ihr hier! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Chow</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11229</link>
		<dc:creator>John Chow</dc:creator>
		<pubDate>Tue, 05 Dec 2006 04:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11229</guid>
		<description>The FeedBurner ads are the 300x250 display ad that appears above the TTZ Media price ads. You will only see it if they have an ad to show. Otherwise you'll only see the TTZ Media ad.</description>
		<content:encoded><![CDATA[<p>The FeedBurner ads are the 300&#215;250 display ad that appears above the TTZ Media price ads. You will only see it if they have an ad to show. Otherwise you&#8217;ll only see the TTZ Media ad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Mackey</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11228</link>
		<dc:creator>David Mackey</dc:creator>
		<pubDate>Tue, 05 Dec 2006 04:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11228</guid>
		<description>Which adds are from FeedBurner? I am sure they will add that feature soon.</description>
		<content:encoded><![CDATA[<p>Which adds are from FeedBurner? I am sure they will add that feature soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Chow</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11215</link>
		<dc:creator>John Chow</dc:creator>
		<pubDate>Tue, 05 Dec 2006 03:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11215</guid>
		<description>I haven't updated it since I wrote about it. But I say every 2 to 3 months should be good.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t updated it since I wrote about it. But I say every 2 to 3 months should be good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gdog</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11213</link>
		<dc:creator>Gdog</dc:creator>
		<pubDate>Tue, 05 Dec 2006 03:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11213</guid>
		<description>John, how often do you regenerate your AdsBlackList sites on Google Adsense?</description>
		<content:encoded><![CDATA[<p>John, how often do you regenerate your AdsBlackList sites on Google Adsense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My New Choice</title>
		<link>http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11211</link>
		<dc:creator>My New Choice</dc:creator>
		<pubDate>Tue, 05 Dec 2006 03:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnchow.com/feedburner-network-ad-default-problem/#comment-11211</guid>
		<description>Thanks for the response.  I've made a few minor changes tonight and will give them 1-2 weeks to test out.  My traffic is nowhere near your levels yet so it might take a little longer to get a feel for my results.</description>
		<content:encoded><![CDATA[<p>Thanks for the response.  I&#8217;ve made a few minor changes tonight and will give them 1-2 weeks to test out.  My traffic is nowhere near your levels yet so it might take a little longer to get a feel for my results.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
