<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Intrepid Blog &#187; ie</title>
	<atom:link href="http://blog.affien.com/archives/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.affien.com</link>
	<description>A few thoughts</description>
	<lastBuildDate>Mon, 23 Jan 2012 08:47:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Stupid IE (2)</title>
		<link>http://blog.affien.com/archives/2007/09/02/stupid-ie-2/</link>
		<comments>http://blog.affien.com/archives/2007/09/02/stupid-ie-2/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 13:02:46 +0000</pubDate>
		<dc:creator>Bas Westerbaan</dc:creator>
				<category><![CDATA[Code sniplets]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://blog.w-nz.com/archives/2007/09/02/stupid-ie-2/</guid>
		<description><![CDATA[To create a multiple select-box with javascript you nee [...]]]></description>
			<content:encoded><![CDATA[<p>To create a multiple select-box with javascript you need a <em>very</em> ugly hack in IE.</p>
<pre style="font-size: 1.5em">if (navigator.appName.match(/Internet Explorer/)) {
	fsel = document.createElement(\'&lt;SELECT MULTIPLE&gt;\');
} else {
	fsel = document.createElement(\'select\');
	fsel.multiple = true;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.affien.com/archives/2007/09/02/stupid-ie-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stupid IE (1)</title>
		<link>http://blog.affien.com/archives/2007/09/02/stupid-ie-1/</link>
		<comments>http://blog.affien.com/archives/2007/09/02/stupid-ie-1/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 12:51:19 +0000</pubDate>
		<dc:creator>Bas Westerbaan</dc:creator>
				<category><![CDATA[Code sniplets]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://blog.w-nz.com/archives/2007/09/02/stupid-ie-1/</guid>
		<description><![CDATA[if(!Array.prototype.indexOf) {
	Array.prototype.indexO [...]]]></description>
			<content:encoded><![CDATA[<pre style="font-size: 1.5em">if(!Array.prototype.indexOf) {
	Array.prototype.indexOf = function(el) {
		var i = 0;
		for(; i &lt; this.length; i++)
			if(this[i] == el)
				return i;
		return -1;
	};
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.affien.com/archives/2007/09/02/stupid-ie-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disappearing backgrounds in IE.</title>
		<link>http://blog.affien.com/archives/2006/12/08/disappearing-backgrounds-in-ie/</link>
		<comments>http://blog.affien.com/archives/2006/12/08/disappearing-backgrounds-in-ie/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 17:33:14 +0000</pubDate>
		<dc:creator>Bas Westerbaan</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://blog.w-nz.com/archives/2006/12/08/disappearing-backgrounds-in-ie/</guid>
		<description><![CDATA[In Internet Explorer in some cases backgrounds disappea [...]]]></description>
			<content:encoded><![CDATA[<p>In Internet Explorer in some cases backgrounds disappear seemingly randomly. The fix? Add the <code>position: relative;</code> style entry to the concerned <code>div</code> tags.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.affien.com/archives/2006/12/08/disappearing-backgrounds-in-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spread Firefox Clone</title>
		<link>http://blog.affien.com/archives/2005/08/19/spread-firefox-clone/</link>
		<comments>http://blog.affien.com/archives/2005/08/19/spread-firefox-clone/#comments</comments>
		<pubDate>Fri, 19 Aug 2005 14:57:25 +0000</pubDate>
		<dc:creator>Bas Westerbaan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://blog.w-nz.com/archives/2005/08/19/spread-firefox-clone/</guid>
		<description><![CDATA[SpreadInternetExplorer.com

It's hilarious [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadinternetexplorer.com/">SpreadInternetExplorer.com</a></p>
<p>It&#8217;s hilarious</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.affien.com/archives/2005/08/19/spread-firefox-clone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

