<?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>~ overflow ~ &#187; IE</title>
	<atom:link href="http://www.overflow.biz/blog/lang/en-us/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.overflow.biz/blog</link>
	<description>Coding and Internet Randomness</description>
	<lastBuildDate>Sun, 08 Jan 2012 23:34:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>label for=&#8221;id&#8221; don&#8217;t work on IE</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/09/27/label-forid-dont-work-on-ie?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=label-forid-dont-work-on-ie</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/09/27/label-forid-dont-work-on-ie#comments</comments>
		<pubDate>Mon, 27 Sep 2010 04:20:18 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[cross browser]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[labels]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=494</guid>
		<description><![CDATA[Problem:

&#60;input type='radio' value='x' id='something_1' name='something'&#62;
&#60;label for='something_1'&#62;cool label&#60;/label&#62;

When user clicks on the label radio should be selected, this only happens on firefox.
Solution:

$(&#34;label&#34;).click(function(){
	if ($(this).attr(&#34;for&#34;) != &#34;&#34;)
		$(&#34;#&#34; + $(this).attr(&#34;for&#34;)).click();
});

More info on this issue:
Stackoverflow posting
]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<pre class="brush: xml;">
&#60;input type='radio' value='x' id='something_1' name='something'&#62;
&#60;label for='something_1'&#62;cool label&#60;/label&#62;
</pre>
<p>When user clicks on the label radio should be selected, this only happens on firefox.</p>
<p><strong>Solution:</strong></p>
<pre class="brush: jscript;">
$(&#34;label&#34;).click(function(){
	if ($(this).attr(&#34;for&#34;) != &#34;&#34;)
		$(&#34;#&#34; + $(this).attr(&#34;for&#34;)).click();
});
</pre>
<p><strong>More info on this issue:</strong></p>
<p><a href="http://stackoverflow.com/questions/2677933/clickable-label-not-working-in-ie-8" target="_blank">Stackoverflow posting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/09/27/label-forid-dont-work-on-ie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE z-index issues</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/05/28/ie-z-index-issues?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ie-z-index-issues</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/05/28/ie-z-index-issues#comments</comments>
		<pubDate>Fri, 28 May 2010 17:24:45 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=437</guid>
		<description><![CDATA[Problem:
IE, in all it&#8217;s versions, ignores the z-index from non child elements, meaning that if you have a div inside another with z-index it&#8217;s fine, however, if there&#8217;s an external div (99%) of the cases, it will simply ignore the z-index.
Solution:
There&#8217;s no solution for this, but you can do a workaround. Even with IE ignoring [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>IE, in all it&#8217;s versions, ignores the z-index from non child elements, meaning that if you have a div inside another with z-index it&#8217;s fine, however, if there&#8217;s an external div (99%) of the cases, it will simply ignore the z-index.</p>
<p><strong>Solution:</strong></p>
<p>There&#8217;s no solution for this, but you can do a workaround. Even with IE ignoring the z-indexes it does has an order of placing elements in front of the others which is the order you have them on html, so if you have a header menu that should appear in the top of everything, you can place the html in the footer of the page, with position absolute, to the header position. This might not work for all cases, but helped mine. since the div in question was hidden and would appear when a element at header was clicked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/05/28/ie-z-index-issues/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Const Note</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/04/13/javascript-const-note?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=javascript-const-note</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/04/13/javascript-const-note#comments</comments>
		<pubDate>Tue, 13 Apr 2010 22:20:39 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[const]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=381</guid>
		<description><![CDATA[In order to keep my code clean i wrote a javascript with const variable declarations, those were constants anyway and there were no reason to declare them as var, right?
Wrong, big mistake, IE don&#8217;t support consts right, turns out it gives javascripts errors (on the wrong position, of course), i will not even go deep [...]]]></description>
			<content:encoded><![CDATA[<p>In order to keep my code clean i wrote a javascript with const variable declarations, those were constants anyway and there were no reason to declare them as var, right?</p>
<p>Wrong, big mistake, IE don&#8217;t support consts right, turns out it gives javascripts errors (on the wrong position, of course), i will not even go deep into this, cuz it will just turn into more shit, so i&#8217;m just replacing const per var;</p>
<p>So, note to self, never use consts on javascript.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/04/13/javascript-const-note/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery + XML + IE = xmlDOM issue &#8230; or no??</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2009/08/29/jquery-xml-ie-xmldom-issue-or-no?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=jquery-xml-ie-xmldom-issue-or-no</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2009/08/29/jquery-xml-ie-xmldom-issue-or-no#comments</comments>
		<pubDate>Sat, 29 Aug 2009 19:52:41 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xmldom]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=215</guid>
		<description><![CDATA[Problem:
In the middle of the developing of a very complex script i figured out that IE was simply ignoring the xml documents i sent to it by ajax. Searching the web i&#8217;ve found this $.xmlDOM jQuery extension that is supposed to fix the IE issue with xmls. Although the extesion was clear and other people [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>In the middle of the developing of a very complex script i figured out that IE was simply ignoring the xml documents i sent to it by ajax. Searching the web i&#8217;ve found <a href="http://outwestmedia.com/jquery-plugins/xmldom/" target="_blank">this $.xmlDOM jQuery extension</a> that is supposed to fix the IE issue with xmls. Although the extesion was clear and other people claims it work, it didn&#8217;t worked for me, how lucky is that?</p>
<p><strong>Solution:</strong></p>
<p>This took a while to solve, and i will skip all the boring process. Turns out that i didn&#8217;t needed the $.xmlDOM extension at all, the issue was on the xml. I&#8217;m developing this script in a language that has accents, i need to use `&#38;aacute;` like html entities in order to avoid malfuncioning with data transport, so this little ampersand was breaking IE.</p>
<p>How nice is that?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2009/08/29/jquery-xml-ie-xmldom-issue-or-no/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An old CSS Trick</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2008/05/30/an-old-css-trick?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=an-old-css-trick</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2008/05/30/an-old-css-trick#comments</comments>
		<pubDate>Fri, 30 May 2008 23:18:18 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://overflow.biz/blog/?p=6</guid>
		<description><![CDATA[It&#8217;s been a long time i use this trick but i never got time to share it, so here it goes,
there are many different ways to have an specific css command to be interpreted by a IE or FF, but they are complicated some are obscure , other requires you to do a separated CSS [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time i use this trick but i never got time to share it, so here it goes,</p>
<p>there are many different ways to have an specific css command to be interpreted by a IE or FF, but they are complicated some are obscure , other requires you to do a separated CSS file etc etc</p>
<p>here&#8217;s my trick:<br />
<code><br />
.someclass {<br />
width:250px; /* this is for FF */<br />
//width:265px; /* this only works on IE */<br />
}<br />
</code><br />
so on FF it will ignore the commented line while IE will override the previous value with the one on the commented line; For some reason this works all IE versions i was able to test, somehow IE really loves to read the //&#8217;s , regular /* */ comments are ignored by both browsers.</p>
<p>that&#8217;s all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2008/05/30/an-old-css-trick/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

