<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ajax Feed Partner Bar</title>
	<atom:link href="http://almaer.com/blog/ajax-feed-partner-bar/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog/ajax-feed-partner-bar</link>
	<description>blogging about life, the universe, and everything tech</description>
	<lastBuildDate>Sat, 08 Sep 2012 07:06:53 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bruno</title>
		<link>http://almaer.com/blog/ajax-feed-partner-bar/comment-page-1#comment-39605</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 18 Sep 2008 11:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/ajax-feed-partner-bar#comment-39605</guid>
		<description>Thanks for the reply, it works fine now, just needed a good spanking ...</description>
		<content:encoded><![CDATA[<p>Thanks for the reply, it works fine now, just needed a good spanking &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Almaer</title>
		<link>http://almaer.com/blog/ajax-feed-partner-bar/comment-page-1#comment-39604</link>
		<dc:creator>Dion Almaer</dc:creator>
		<pubDate>Thu, 18 Sep 2008 11:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/ajax-feed-partner-bar#comment-39604</guid>
		<description>Bruno,

I am on the road at the moment. Thanks for the question though. The best place for this is to ask on the forum, which has Googlers watching to help!

http://groups.google.com/group/Google-AJAX-Search-API

Cheers,

Dion</description>
		<content:encoded><![CDATA[<p>Bruno,</p>
<p>I am on the road at the moment. Thanks for the question though. The best place for this is to ask on the forum, which has Googlers watching to help!</p>
<p><a href="http://groups.google.com/group/Google-AJAX-Search-API" rel="nofollow">http://groups.google.com/group/Google-AJAX-Search-API</a></p>
<p>Cheers,</p>
<p>Dion</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://almaer.com/blog/ajax-feed-partner-bar/comment-page-1#comment-39603</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 18 Sep 2008 10:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/ajax-feed-partner-bar#comment-39603</guid>
		<description>Hello Dion, 

I&#039;m new in this tech stuff, and I&#039;m not sure you can help me, but i&#039;m gonna try: 

I&#039;m using this partner bar in a blog - and I&#039;ve managed to use the partner bar to get the latest posts from the categories dynamically , but it wont work in IE, can you drop by TvZine and if you can sort it out give me a holler? 

I would really appreciate it 

Thanks, Bruno</description>
		<content:encoded><![CDATA[<p>Hello Dion, </p>
<p>I&#8217;m new in this tech stuff, and I&#8217;m not sure you can help me, but i&#8217;m gonna try: </p>
<p>I&#8217;m using this partner bar in a blog &#8211; and I&#8217;ve managed to use the partner bar to get the latest posts from the categories dynamically , but it wont work in IE, can you drop by TvZine and if you can sort it out give me a holler? </p>
<p>I would really appreciate it </p>
<p>Thanks, Bruno</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wholesale replica handbags</title>
		<link>http://almaer.com/blog/ajax-feed-partner-bar/comment-page-1#comment-38950</link>
		<dc:creator>wholesale replica handbags</dc:creator>
		<pubDate>Sun, 29 Jun 2008 04:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/ajax-feed-partner-bar#comment-38950</guid>
		<description>good thank you</description>
		<content:encoded><![CDATA[<p>good thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: han</title>
		<link>http://almaer.com/blog/ajax-feed-partner-bar/comment-page-1#comment-37669</link>
		<dc:creator>han</dc:creator>
		<pubDate>Thu, 20 Dec 2007 02:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog/ajax-feed-partner-bar#comment-37669</guid>
		<description>


    Hidden IFrame Example 3
    
        var oIFrame = null;
        
        function createIFrame() {
            var oIFrameElement = document.createElement(&quot;iframe&quot;);
            oIFrameElement.width=0;
            oIFrameElement.height=0;
            oIFrameElement.frameBorder=0;
            oIFrameElement.name = &quot;hiddenFrame&quot;;
            oIFrameElement.id = &quot;hiddenFrame&quot;;
            document.body.appendChild(oIFrameElement);
            
            oIFrame = frames[&quot;hiddenFrame&quot;];
        }
                   
        function checkIFrame() {
            if (!oIFrame) {
                createIFrame();                
            } 
            setTimeout(function () {
                oIFrame.location = &quot;ProxyForm.htm&quot;;
            }, 10);                              
        }
        
        function formReady() {
            var oHiddenForm = oIFrame.document.forms[0];
            var oForm = document.forms[0];
            
            for (var i=0 ; i &lt; oForm.elements.length; i++) {
                var oHidden = oIFrame.document.createElement(&quot;input&quot;);
                oHidden.type = &quot;hidden&quot;;
                oHidden.name = oForm.elements[i].name;
                oHidden.value = oForm.elements[i].value;
                oHiddenForm.appendChild(oHidden);
            }
            
            oHiddenForm.action = oForm.action;
            oHiddenForm.submit();
        };
        
        function saveResult(sMessage) {
            var divStatus = document.getElementById(&quot;divStatus&quot;);
            divStatus.innerHTML = &quot;Request completed: &quot; + sMessage;            
        }

    


    
    Enter customer information to be saved:
    Customer Name: 
    Address: 
    City: 
    State: 
    Zip Code: 
    Phone: 
    E-mail: 
    
    
    

</description>
		<content:encoded><![CDATA[<p>Hidden IFrame Example 3</p>
<p>        var oIFrame = null;</p>
<p>        function createIFrame() {<br />
            var oIFrameElement = document.createElement(&#8221;iframe&#8221;);<br />
            oIFrameElement.width=0;<br />
            oIFrameElement.height=0;<br />
            oIFrameElement.frameBorder=0;<br />
            oIFrameElement.name = &#8220;hiddenFrame&#8221;;<br />
            oIFrameElement.id = &#8220;hiddenFrame&#8221;;<br />
            document.body.appendChild(oIFrameElement);</p>
<p>            oIFrame = frames["hiddenFrame"];<br />
        }</p>
<p>        function checkIFrame() {<br />
            if (!oIFrame) {<br />
                createIFrame();<br />
            }<br />
            setTimeout(function () {<br />
                oIFrame.location = &#8220;ProxyForm.htm&#8221;;<br />
            }, 10);<br />
        }</p>
<p>        function formReady() {<br />
            var oHiddenForm = oIFrame.document.forms[0];<br />
            var oForm = document.forms[0];</p>
<p>            for (var i=0 ; i &lt; oForm.elements.length; i++) {<br />
                var oHidden = oIFrame.document.createElement(&#8221;input&#8221;);<br />
                oHidden.type = &#8220;hidden&#8221;;<br />
                oHidden.name = oForm.elements[i].name;<br />
                oHidden.value = oForm.elements[i].value;<br />
                oHiddenForm.appendChild(oHidden);<br />
            }</p>
<p>            oHiddenForm.action = oForm.action;<br />
            oHiddenForm.submit();<br />
        };</p>
<p>        function saveResult(sMessage) {<br />
            var divStatus = document.getElementById(&#8221;divStatus&#8221;);<br />
            divStatus.innerHTML = &#8220;Request completed: &#8221; + sMessage;<br />
        }</p>
<p>    Enter customer information to be saved:<br />
    Customer Name:<br />
    Address:<br />
    City:<br />
    State:<br />
    Zip Code:<br />
    Phone:<br />
    E-mail:</p>
]]></content:encoded>
	</item>
</channel>
</rss>
