<?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>Two Drifters &#187; IE</title>
	<atom:link href="http://blog.ideaday.de/max/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ideaday.de/max</link>
	<description>Off to see the world.</description>
	<lastBuildDate>Sun, 05 Feb 2012 16:48:05 +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>Internet Explorer, position fixed and strict mode</title>
		<link>http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/</link>
		<comments>http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 19:39:54 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[fixed positioning]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[quirky mode]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/' addthis:title='Internet Explorer, position fixed and strict mode '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>You want to use fixed positioning with CSS If you want to make use of the simple CSS position:fixed; to display an element static to the viewport, you will run into problems with the Internet Explorer. position:fixed is only supported since Internet Explorer 7 I tested this solution with IE 7.0.5730.13 on Windows XP. IE [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/' addthis:title='Internet Explorer, position fixed and strict mode ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/' addthis:title='Internet Explorer, position fixed and strict mode '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p><strong>You want to use fixed positioning with CSS</strong></p>
<p>If you want to make use of the simple CSS position:fixed; to display an element static to the viewport, you will run into problems with the Internet Explorer.</p>
<p><strong>position:fixed is only supported since Internet Explorer 7</strong></p>
<p>I tested this solution with IE 7.0.5730.13 on Windows XP. IE 6 does not support fixed positioning.</p>
<p><strong>You need to enforce strict mode</strong></p>
<p>Internet Explorer will default to "quirky rendering mode", if you don't add special tags to your HTML document:</p>
<blockquote>
<p><strong>&lt;!DOCTYPE html&gt;</strong><br />
&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /&gt;<br />
&lt;title&gt;Progress Test&lt;/title&gt;<br />
<strong>&lt;meta http-equiv= "X-UA-Compatible"content="IE=Edge"&gt;</strong><br />
&lt;script language = "JavaScript" src="../head.min.js"&gt;&lt;/script&gt;<br />
[...]</p>
</blockquote>
<p>Both are essential! If you try IE 9 on the page without having added the meta tag X-UA-Compatible, it will render the page in quirky mode. And in quirky mode, <strong>it will ignore your position:fixed</strong>, and render your element where you have put it in the flow of the document.</p>
<p>Please note: I have read that this meta tag actually is not valid for this DOCTYPE.</p>
<p><strong>It still does not work? I am testing with local documents!</strong></p>
<p>Internet Explorer also takes into account where the element is being served from. This solution will work, if you upload your test documents to a server and access them over the Internet. <strong>It will <del><strong>not</strong> work</del> (see note below) <strong>for local files, even if you use a local webserver to serve up the files (i.e. XAMPP)</strong>. Internet Explorer will render your document in quirky mode, in this case.</strong></p>
<p>Note: actually <strong>it does work offline</strong> (opening a document from the harddrive) in Internet Explorer 9 after fiddling somewhat with the document. I <strong>removed a IE compatibility script</strong> (not shown above), which I had included from Google previously. Check if you have one of those, and remove it!</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/' addthis:title='Internet Explorer, position fixed and strict mode ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ideaday.de/max/2011/09/internet-explorer-position-fixed-and-strict-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Tools and Tabs in IE</title>
		<link>http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/</link>
		<comments>http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 13:54:27 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Tools]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/' addthis:title='JQuery Tools and Tabs in IE '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>Internet Explorer's refusing to work with the tabs &#8211; that is, the first two tabs work then everything breaks. Firefoxy and Opera do what I intend them to do. Have I mentioned that cross-browser developing can be a burden? It turns out, that Internet Explorer has a problem with the &#60;FORM&#62; not wrapping around everything, [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/' addthis:title='JQuery Tools and Tabs in IE ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/' addthis:title='JQuery Tools and Tabs in IE '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Internet Explorer's refusing to work with the tabs &#8211; that is, the first two tabs work then everything breaks. Firefoxy and Opera do what I intend them to do. Have I mentioned that cross-browser developing can be a burden?</p>
<p>It turns out, that Internet Explorer has a problem with the <strong>&lt;FORM&gt;</strong> not wrapping around everything, but being split up between DIVs.</p>
<p><strong>This does not work with Internet Explorer:</strong></p>
<blockquote>
<p>&lt;div class="panes"&gt;<br />
&lt;DIV&gt;<br />
&lt;form action="/" method="post"&gt;<br />
&#8230;<br />
&lt;/DIV&gt;<br />
&lt;DIV&gt;<br />
&#8230;<br />
&lt;/DIV&gt;<br />
&lt;DIV&gt;<br />
&lt;/form&gt;<br />
&lt;/DIV&gt;<br />
&lt;/DIV&gt;&lt;!&#8211;closing the panes&#8211;&gt;</p>
</blockquote>
<p><strong>This works:</strong></p>
<blockquote>
<p>&lt;form action="/" method="post"&gt;<br />
&lt;div class="panes"&gt;<br />
&lt;DIV&gt;<br />
&#8230;<br />
&lt;/DIV&gt;<br />
&lt;DIV&gt;<br />
&#8230;<br />
&lt;/DIV&gt;<br />
&lt;DIV&gt;<br />
&lt;/DIV&gt;<br />
&lt;/DIV&gt;&lt;!&#8211;closing the panes&#8211;&gt;<br />
&lt;/form&gt;&lt;!&#8211;form wraps around the panes &#8211;&gt;</p>
</blockquote>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/' addthis:title='JQuery Tools and Tabs in IE ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ideaday.de/max/2010/02/jquery-tools-and-tabs-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/34 queries in 0.026 seconds using disk: basic
Object Caching 424/497 objects using disk: basic
Content Delivery Network via ideadayblog.ideaday.netdna-cdn.com

Served from: blog.ideaday.de @ 2012-02-06 18:14:16 -->
