<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>A Blog by Web Developers Against IE</title>
	<atom:link href="http://www.stupidie.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stupidie.com</link>
	<description></description>
	<pubDate>Mon, 04 Aug 2008 12:18:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>IE8 Beta Is Hilarious</title>
		<link>http://www.stupidie.com/2008/08/04/ie8-beta-is-hillarious/</link>
		<comments>http://www.stupidie.com/2008/08/04/ie8-beta-is-hillarious/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 12:17:29 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE8]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[hillarious]]></category>

		<category><![CDATA[ie8 beta]]></category>

		<category><![CDATA[ie8 beta sucks]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=139</guid>
		<description><![CDATA[And we weren&#8217;t the ones to state this. This time it was Marah Marie after seeing how IE8 played around with her blog name.
We&#8217;ve been a little quiet latley in this blog and since we are seeing more post by other people pop up randomly around the Web, talking about frustrations with IE8 Beta, we [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "IE8 Beta Is Hilarious", url: "http://www.stupidie.com/2008/08/04/ie8-beta-is-hillarious/" });</script>]]></description>
			<content:encoded><![CDATA[<p>And we weren&#8217;t the ones to state this. This time it was <a title="IE8 Beta is hillarious" href="http://marahmarie.livejournal.com/10736.html" target="_blank">Marah Marie</a> after seeing how IE8 played around with her blog name.</p>
<p>We&#8217;ve been a little quiet latley in this blog and since we are seeing more post by other people pop up randomly around the Web, talking about frustrations with IE8 Beta, we decided to post one. Maybe we will continue to do this until the next Beta, which is due sometime this month, comes out and we get a chance to evaluate it. Hopefully, focus won&#8217;t be put on silly features, (web slices for instance), instead of making this browser truly compliant for once.</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=IE8+Beta+Is+Hilarious&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F08%2F04%2Fie8-beta-is-hillarious%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/08/04/ie8-beta-is-hillarious/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fun With Lightbox &#038; The SWFobject</title>
		<link>http://www.stupidie.com/2008/07/25/fun-with-lightbox-the-swfobject/</link>
		<comments>http://www.stupidie.com/2008/07/25/fun-with-lightbox-the-swfobject/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 19:43:32 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE7]]></category>

		<category><![CDATA[Frustrations]]></category>

		<category><![CDATA[ie6]]></category>

		<category><![CDATA[ie7]]></category>

		<category><![CDATA[domready]]></category>

		<category><![CDATA[ie bug]]></category>

		<category><![CDATA[lightbox]]></category>

		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=138</guid>
		<description><![CDATA[Today we ran into a very fun error and by fun I mean stupid on the part of IE and probably because we had some fun trying to make it work. As it turns out, IE doesn&#8217;t like it when you use the lightbox script and the swfobject on the same page. I understand that [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Fun With Lightbox &#038; The SWFobject", url: "http://www.stupidie.com/2008/07/25/fun-with-lightbox-the-swfobject/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Today we ran into a very fun error and by fun I mean stupid on the part of IE and probably because we had some fun trying to make it work. As it turns out, IE doesn&#8217;t like it when you use the lightbox script and the swfobject on the same page. I understand that this two scripts are not made to work together but the cool part is that they do work together without any problem on Firefox.</p>
<p>The problem is simple but it is quite annoying since it makes our website useless since IE decides to close the page giving the following error: &#8220;<a title="IE Bug" href="http://support.microsoft.com/default.aspx/kb/927917" target="_blank">Internet Explorer cannot open 		  the Internet site http://<var>&lt;Web site&gt;</var>.com. 		  Operation aborted.</a>&#8221; Their excuse is simple: &#8220;This problem occurs because a child container HTML element contains script code that tries to modify the parent container element of the child container. The script code tries to modify the parent container element by using either the <strong>innerHTML</strong> method or the <strong>appendChild</strong> method.&#8221; and they give a simple workaround that involves placing the script on a closed div or something of that sort which we tried with no luck.</p>
<p>What we ended up doing was implementing a mootools <a title="DOMready for Prototype" href="http://clientside.cnet.com/code-snippets/event-scripting/a-dom-ready-extension-for-prototype/" target="_blank">domready type function for prototype</a> to initialize both the lightbox and the swfobject once the DOM is fully loaded. Of course this fixed the problem but, when we tested on IE7, the lightbox overlay doesn&#8217;t cover the whole screen (I think this bug is unrelated to our issue but it is still an annoying bug that happens only in IE7). So, we decided to take the overlay out so the image now appears floating in the middle of the website with no backdrop.</p>
<p>As we usually say here on Stupid IE: Thanks IE for making our lives a little better.</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=Fun+With+Lightbox+%26%23038%3B+The+SWFobject&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F25%2Ffun-with-lightbox-the-swfobject%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/25/fun-with-lightbox-the-swfobject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stop Support for IE6</title>
		<link>http://www.stupidie.com/2008/07/22/stop-support-for-ie6/</link>
		<comments>http://www.stupidie.com/2008/07/22/stop-support-for-ie6/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 15:02:55 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[ie6]]></category>

		<category><![CDATA[support for ie6]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=137</guid>
		<description><![CDATA[&#8220;The best way to get rid of IE6 is to stop supporting it.&#8221; some may argue this is a bad move as our responsibility as Web Developers is to support our users and create a nice user experience when navigating through our websites. I completely agree with this statement but I can&#8217;t agree to keep [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Stop Support for IE6", url: "http://www.stupidie.com/2008/07/22/stop-support-for-ie6/" });</script>]]></description>
			<content:encoded><![CDATA[<p>&#8220;The best way to get rid of IE6 is to stop supporting it.&#8221; some may argue this is a bad move as our responsibility as Web Developers is to support our users and create a nice user experience when navigating through our websites. I completely agree with this statement but I can&#8217;t agree to keep supporting a browser that has no respect whatsoever to my work and makes me waste countless hours trying to get things to work correctly on it.</p>
<p>My plan: Every new client that I get is being upgraded to IE7 or FireFox, depending on their usage and thanks to some Racists Websites that don&#8217;t work on any other browser except IE.</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=Stop+Support+for+IE6&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F22%2Fstop-support-for-ie6%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/22/stop-support-for-ie6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Worse Windows Fail</title>
		<link>http://www.stupidie.com/2008/07/18/worse-windows-fail/</link>
		<comments>http://www.stupidie.com/2008/07/18/worse-windows-fail/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 14:44:37 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Frustrations]]></category>

		<category><![CDATA[Other Microsoft Nightmares]]></category>

		<category><![CDATA[windows fail]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=136</guid>
		<description><![CDATA[Thanks to Wacky Archives for compiling this list of the 25 worse Windows Fail. Maybe we should start relaying more on Mac or Linux to develop kiosks and displays. I don&#8217;t know, just a thought.
http://www.wackyarchives.com/featured/25-worst-moments-when-windows-fail.html
<script type="text/javascript">SHARETHIS.addEntry({ title: "Worse Windows Fail", url: "http://www.stupidie.com/2008/07/18/worse-windows-fail/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a title="Wacky Archives" href="http://www.wackyarchives.com/" target="_blank">Wacky Archives</a> for compiling this list of the 25 worse Windows Fail. Maybe we should start relaying more on Mac or Linux to develop kiosks and displays. I don&#8217;t know, just a thought.</p>
<p><a title="25 Worst Moments When Windows Fail" href="http://www.wackyarchives.com/featured/25-worst-moments-when-windows-fail.html" target="_blank">http://www.wackyarchives.com/featured/25-worst-moments-when-windows-fail.html</a></p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=Worse+Windows+Fail&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F18%2Fworse-windows-fail%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/18/worse-windows-fail/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Test IE on Your Mac</title>
		<link>http://www.stupidie.com/2008/07/15/test-ie-on-your-mac/</link>
		<comments>http://www.stupidie.com/2008/07/15/test-ie-on-your-mac/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 22:40:39 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=133</guid>
		<description><![CDATA[For those of us who decided to dump the PC but are still forced to keep one handy to test our designs, he&#8217;s a great tool that will allow you to test without having to set a Virtual Machine, Boot Camp, or any other method on your mac but instead let&#8217;s you run a simple [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Test IE on Your Mac", url: "http://www.stupidie.com/2008/07/15/test-ie-on-your-mac/" });</script>]]></description>
			<content:encoded><![CDATA[<p>For those of us who decided to dump the PC but are still forced to keep one handy to test our designs, he&#8217;s a great tool that will allow you to test without having to set a Virtual Machine, Boot Camp, or any other method on your mac but instead let&#8217;s you run a simple program:</p>
<p>http://www.kronenberg.org/ies4osx/</p>
<p>Enjoy,&#8230; I guess.</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=Test+IE+on+Your+Mac&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F15%2Ftest-ie-on-your-mac%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/15/test-ie-on-your-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>To Secure or Not Secure IE security vulnerabilities</title>
		<link>http://www.stupidie.com/2008/07/14/to-secure-or-not-secure-ie-security-vulnerabilities/</link>
		<comments>http://www.stupidie.com/2008/07/14/to-secure-or-not-secure-ie-security-vulnerabilities/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:11:53 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE7]]></category>

		<category><![CDATA[Broken on IE8]]></category>

		<category><![CDATA[ie6]]></category>

		<category><![CDATA[ie7]]></category>

		<category><![CDATA[ie8]]></category>

		<category><![CDATA[activex attacks]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[vulnerabilites]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=132</guid>
		<description><![CDATA[This post comes from a mix of two articles dealing with security while browsing the Web. In simple terms, if you are using IE on any version (5 -   then the chances of your computer getting hacked with malware, exploits, viruses etc, are far greater than someone using a good browser like our [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "To Secure or Not Secure IE security vulnerabilities", url: "http://www.stupidie.com/2008/07/14/to-secure-or-not-secure-ie-security-vulnerabilities/" });</script>]]></description>
			<content:encoded><![CDATA[<p>This post comes from a mix of two articles dealing with security while browsing the Web. In simple terms, if you are using <a title="Symantec activex attacks will intesnfiy" href="http://www.pcworld.com/businesscenter/article/148355/symantec_microsoft_access_activex_attacks_will_intensify.html" target="_blank">IE on any version (5 - <img src='http://www.stupidie.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </a> then the chances of your computer getting hacked with malware, exploits, viruses etc, are far greater than someone using a good browser like our favorite: <a title="Firefox is most secure browser" href="http://www.chewontech.com/2008/07/firefox-users-most-secure-on-internet_14.html" target="_blank">Firefox.</a></p>
<p>The article explains us that: &#8220;<em>The vulnerability poses a special danger since the ActiveX control is digitally signed by Microsoft, which means that people who have Internet Explorer configured to trust ActiveX controls with that designation would run it automatically if encountered on a Web page.</em></p>
<p><em>Some of the Web pages that have already been hacked with automated SQL injection attacks earlier this year are also hosting the Microsoft Access attack, according to Symantec&#8217;s Sean Hittel.</em>&#8221;</p>
<p>And yes, it is Symantec who is explaining the problem and yes, July patches are out so IE users will have to wait or disable their ActiveX control in order to be safer.</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=To+Secure+or+Not+Secure+IE+security+vulnerabilities&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F14%2Fto-secure-or-not-secure-ie-security-vulnerabilities%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/14/to-secure-or-not-secure-ie-security-vulnerabilities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IE8 Still Fails</title>
		<link>http://www.stupidie.com/2008/07/12/ie8-still-fails/</link>
		<comments>http://www.stupidie.com/2008/07/12/ie8-still-fails/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 21:20:20 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE8]]></category>

		<category><![CDATA[acid test]]></category>

		<category><![CDATA[acid test 3]]></category>

		<category><![CDATA[ie8]]></category>

		<category><![CDATA[ie8 fails]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/2008/07/12/ie8-still-fails/</guid>
		<description><![CDATA[And this time we are not the ones to point it out. It is Microsoft who does the favor: http://www.thoughtmechanics.com/2008/07/12/ie8-fail-win/
<script type="text/javascript">SHARETHIS.addEntry({ title: "IE8 Still Fails", url: "http://www.stupidie.com/2008/07/12/ie8-still-fails/" });</script>]]></description>
			<content:encoded><![CDATA[<p>And this time we are not the ones to point it out. It is Microsoft who does the favor: <a title="IE8 Fails" href="http://www.thoughtmechanics.com/2008/07/12/ie8-fail-win/" target="_blank" title="IE8 Fails">http://www.thoughtmechanics.com/2008/07/12/ie8-fail-win/</a></p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=IE8+Still+Fails&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F12%2Fie8-still-fails%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/12/ie8-still-fails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ie7 not supported on vista</title>
		<link>http://www.stupidie.com/2008/07/10/ie7-not-supported-on-vista/</link>
		<comments>http://www.stupidie.com/2008/07/10/ie7-not-supported-on-vista/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 22:01:57 +0000</pubDate>
		<dc:creator>IpOnie</dc:creator>
		
		<category><![CDATA[ie7]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=130</guid>
		<description><![CDATA[
<script type="text/javascript">SHARETHIS.addEntry({ title: "ie7 not supported on vista", url: "http://www.stupidie.com/2008/07/10/ie7-not-supported-on-vista/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aboveideas.com/stupiie/ie7sr8.png" target="_blank"><img src="http://www.aboveideas.com/stupiie/ie7sr8.png" alt="" width="315" height="249" /></a></p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=ie7+not+supported+on+vista&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F10%2Fie7-not-supported-on-vista%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/10/ie7-not-supported-on-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IE7 Eats up RAM</title>
		<link>http://www.stupidie.com/2008/07/10/ie7-eats-up-ram/</link>
		<comments>http://www.stupidie.com/2008/07/10/ie7-eats-up-ram/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 20:46:15 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE7]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[ie7]]></category>

		<category><![CDATA[ie8]]></category>

		<category><![CDATA[ram]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=129</guid>
		<description><![CDATA[Haven&#8217;t tried this myself, is not very easy now that I&#8217;ve completely crossover Mac and  I only use IE to test Websites about once every week, but it seems that IE is a memory thief.
Has anybody experienced a similar issue? We may need to keep an eye about this on the upcoming IE8 since it [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "IE7 Eats up RAM", url: "http://www.stupidie.com/2008/07/10/ie7-eats-up-ram/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t tried this myself, is not very easy now that I&#8217;ve completely crossover Mac and  I only use IE to test Websites about once every week, but it seems that IE is a <a title="IE7 consumes RAM" href="http://www.lockergnome.com/forsythe/2008/07/09/internet-explorer-7-consumes-ram/" target="_blank">memory thief.</a></p>
<p>Has anybody experienced a similar issue? We may need to keep an eye about this on the upcoming IE8 since it seems to be a recent behavior probably caused by a patch?</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=IE7+Eats+up+RAM&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F10%2Fie7-eats-up-ram%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/10/ie7-eats-up-ram/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IE7 hates iFrames</title>
		<link>http://www.stupidie.com/2008/07/09/ie7-hates-iframes/</link>
		<comments>http://www.stupidie.com/2008/07/09/ie7-hates-iframes/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 13:39:45 +0000</pubDate>
		<dc:creator>Carlos</dc:creator>
		
		<category><![CDATA[Broken on IE7]]></category>

		<category><![CDATA[Frustrations]]></category>

		<category><![CDATA[ie7]]></category>

		<category><![CDATA[iframe]]></category>

		<category><![CDATA[sue microsoft]]></category>

		<guid isPermaLink="false">http://www.stupidie.com/?p=128</guid>
		<description><![CDATA[I know iframes are not that great because of accessibility issues etc but they are a great solution when clients want to white label applications or information from other Websites which in case is what I had to do on this occasion and what triggered this post.
To make a long story short, I have a [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "IE7 hates iFrames", url: "http://www.stupidie.com/2008/07/09/ie7-hates-iframes/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I know iframes are not that great because of accessibility issues etc but they are a great solution when clients want to white label applications or information from other Websites which in case is what I had to do on this occasion and what triggered this post.</p>
<p>To make a long story short, I have a client that wanted to offer the reservation system I created for them to other websites who in turn didn&#8217;t want to have clients go away from their own websites or see my client&#8217;s logo and contact information. My client&#8217;s system was tied in with their internal Database and server and for security everything needed to be ran on their servers without any external connections so the easiest way was to create a stripped down version of the reservation process, in other words just the forms, which could be placed on an iframe.</p>
<p>Everything worked perfectly on Firefox of course but when we go to IE, we get an error because the sessions are not set correctly so the whole system fails.</p>
<p>So here I am, once again trying to figure out a workaround to have something as simple as a form, that uses PHP sessions set on an iframe, work on IE the way it flawlessly work on Firefox. Seriously people, we should sue Microsoft for damages in all the time and effort wasted getting our websites to work on their crappy monopolized browsers.</p>
<p>* Update</p>
<p>Apparently by adding this: header(&#8217;P3P: CP=&#8221;CAO PSA OUR&#8221;&#8216;); to the page involved in setting the sessions will make IE work correctly. Just thought I add this for everybody that&#8217;s having the same problem,</p>
<p><a href="http://sharethis.com/item?&wp=2.5&amp;publisher=28d1d6d5-c668-4bbc-9c05-1e0bd79d3314&amp;title=IE7+hates+iFrames&amp;url=http%3A%2F%2Fwww.stupidie.com%2F2008%2F07%2F09%2Fie7-hates-iframes%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stupidie.com/2008/07/09/ie7-hates-iframes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
