<?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; Internet Explorer</title>
	<atom:link href="http://blog.ideaday.de/max/tag/internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ideaday.de/max</link>
	<description>Off to see the world.</description>
	<lastBuildDate>Fri, 10 Feb 2012 19:07:45 +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>Enable and fix Lectora titles for the Opera browser</title>
		<link>http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/</link>
		<comments>http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 18:34:37 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Lectora]]></category>
		<category><![CDATA[Netscape Navigator]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/' addthis:title='Enable and fix Lectora titles for the Opera browser '  ><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>Problem: If you publish a title with Lectora, and try to view it from Opera, instead of the title you see an error message Your browser does not support dynamic html. Please download a current version of either Microsoft'" DESIGNTIMESP=18189&#62;Microsoft Internet Explorer or Mozilla'" DESIGNTIMESP=18192&#62;Mozilla Firefox and try visiting our site again. Thank You. Solution: [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/' addthis:title='Enable and fix Lectora titles for the Opera browser ' ><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/06/enable-and-fix-lectora-titles-for-the-opera-browser/' addthis:title='Enable and fix Lectora titles for the Opera browser '  ><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>Problem: If you publish a title with Lectora, and try to view it from Opera, instead of the title you see an error message</strong></p>
<blockquote><p><em>Your browser does not support dynamic html. Please download a current version of either</em> <a href="http://www.microsoft.com/ie/&quot;>Microsoft">Microsoft'" DESIGNTIMESP=18189&gt;<em>Microsoft</em></a> <em>Internet Explorer or</em> <a href="http://www.mozilla.com/en-US/firefox/&quot;>Mozilla">Mozilla'" DESIGNTIMESP=18192&gt;<em>Mozilla</em></a> <em>Firefox and try visiting our site again. Thank You.</em></p></blockquote>
<p><strong>Solution: You have to modify</strong> trivantis.js <strong>in line 353 and line 355. The modifications are displayed in bold</strong></p>
<blockquote><p><em>this.ns = (name=="ns" &amp;&amp; this.v&gt;=4)<strong>||(navigator.userAgent.indexOf("Opera")!=-1)</strong><br />
this.ns4 = (this.ns &amp;&amp; this.v==4)<br />
this.ns5 = (this.ns &amp;&amp; this.v==5)<strong>||(navigator.userAgent.indexOf("Opera")!=-1)</strong></em></p></blockquote>
<h3>IMPORTANT: WordPress fucks up the quotation marks above, fix them by hand!!!</h3>
<p>This tells Lectora's code to treat Opera like Netscape Navigator and its derivates. For the title we are developing for the WHO (ICF eLearning tool) it works flawlessly.</p>
<p>This fix is taken from <a href="http://forum.trivantis.com/f5/allow-selecting-compatible-browsers-versions-when-publishing-10015/">this</a> Lectora forum message, posted by <strong><a href="http://www.intea.lv/">ssneg</a></strong>.</p>
<p>(ssneg also explains why it is not possible to override <em>this.min</em> and set it to true &#8211; because Lectora only includes code for IE or NS to display the title contents, like buttons, later on. Thus we need for Opera to "pretend" that it is Navigator. The code works.)</p>
<p><strong>Do you know any other browsers incompatible with Lectora? Please post a comment, and we might find a solution :-)!</strong></p>
<p>&nbsp;</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2011/06/enable-and-fix-lectora-titles-for-the-opera-browser/' addthis:title='Enable and fix Lectora titles for the Opera browser ' ><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/06/enable-and-fix-lectora-titles-for-the-opera-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer (aka IE) and CSS</title>
		<link>http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/</link>
		<comments>http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:16:08 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/' addthis:title='Internet Explorer (aka IE) and CSS '  ><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>An order problem? Internet Explorer seems to be picky about the order chained CSS class selectors appear in: .q_null {background-color:#f5f5f5;} .q_true {background-color:#81F7BE;} .q_false {background-color:#F78181;} .q_null.icon {background: url(icons/pencil.png) no-repeat center;} .icon.q_false {background: url(icons/error.png) no-repeat center;} .icon.q_true {background: url(icons/accept.png) no-repeat center;} As you can see, it layouts .q_null.icon as intended (one icon, table row has a background [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/' addthis:title='Internet Explorer (aka IE) and CSS ' ><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/05/internet-explorer-aka-ie-and-css/' addthis:title='Internet Explorer (aka IE) and CSS '  ><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>An order problem?</strong></p>
<p>Internet Explorer seems to be picky about the order chained CSS class selectors appear in:</p>
<blockquote>
<p>.q_null {background-color:#f5f5f5;}<br />
.q_true {background-color:#81F7BE;}<br />
.q_false {background-color:#F78181;}</p>
<p>.q_null.icon {background: url(icons/pencil.png) no-repeat center;}<br />
.icon.q_false {background: url(icons/error.png) no-repeat center;}<br />
.icon.q_true {background: url(icons/accept.png) no-repeat center;}</p>
</blockquote>
<p align="center"><a href="http://ideadayblog.ideaday.netdna-cdn.com/max/wp-content/uploads/2010/05/ie-layouter.jpg"><img alt="ie-layouter" src="http://ideadayblog.ideaday.netdna-cdn.com/max/wp-content/uploads/2010/05/ie-layouter-small.jpg" width="450" height="92" /></a></p>
<p>As you can see, it layouts .q_null.icon as intended (one icon, table row has a background color), whereas the other order .icon.q_false is rendered incorrectly.</p>
<p><strong>No &#8211; there's something else in the works</strong></p>
<p align="center"><a href="http://ideadayblog.ideaday.netdna-cdn.com/max/wp-content/uploads/2010/05/ie-layouter-2.jpg"><img alt="ie-layouter-2" src="http://ideadayblog.ideaday.netdna-cdn.com/max/wp-content/uploads/2010/05/ie-layouter-2-small.jpg" width="450" height="92" /></a></p>
<p>This is the result of the "corrected" code:</p>
<blockquote>
<p>.q_null {background-color:#f5f5f5;}<br />
.q_true {background-color:#81F7BE;}<br />
.q_false {background-color:#F78181;}</p>
<p>.q_null.icon {background: url(icons/pencil.png) no-repeat center;}<br />
.q_false.icon {background: url(icons/error.png) no-repeat center;}<br />
.q_true.icon {background: url(icons/accept.png) no-repeat center;}</p>
</blockquote>
<p><strong>Does it ignore chained classes in CSS completely?</strong></p>
<p>A little research shows: only <strong>Internet Explorer 6</strong> ignores chained classes in CSS. Unfortunately it is still used by about 10 % of the online population. Thus, there's no other choice but to rewrite the code to execute with "unchained" single classes in CSS.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/05/internet-explorer-aka-ie-and-css/' addthis:title='Internet Explorer (aka IE) and CSS ' ><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/05/internet-explorer-aka-ie-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery AJAX &amp; Internet Explorer</title>
		<link>http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/</link>
		<comments>http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/#comments</comments>
		<pubDate>Wed, 26 May 2010 14:47:45 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/' addthis:title='jQuery AJAX &#38; Internet Explorer '  ><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 getJSON trouble This piece of code initially did not work for me on IE: $.getJSON("../inc/exercise_ajax.php?" + $(this).serialize(), function(json) FireFox worked without problems. The reason is that my JSON code was not well-formed. It had a comma (',') too much. Here's the code which I use in PHP to create my JSON (braces omitted): [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/' addthis:title='jQuery AJAX &#38; Internet Explorer ' ><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/05/jquery-ajax-internet-explorer/' addthis:title='jQuery AJAX &amp; Internet Explorer '  ><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>Internet Explorer getJSON trouble</strong></p>
<p>This piece of code initially did not work for me on IE:</p>
<blockquote>
<p>$.getJSON("../inc/exercise_ajax.php?" + $(this).serialize(), function(json)</p>
</blockquote>
<p>FireFox worked without problems.</p>
<p>The reason is that my JSON code was not well-formed. It had a comma (',') too much.</p>
<p>Here's the code which I use in PHP to create my JSON (braces omitted):</p>
<blockquote>
<p>foreach($answers as $question =&gt; $answer){<br />
 $outstr .= '"q'.$question.'": ';<br />
 if (isset($_GET[$question])){<br />
 if ($_GET[$question] == $answer) $outstr .= 'true';<br />
 else $outstr .= 'false';<br />
 } else $outstr .= 'null';<br />
 $outstr .= ',';<br />
 }<br />
<strong>echo chop($outstr,',');</strong></p>
</blockquote>
<p>You have to chop off the trailing comma &#8211; if you don't, IE will choke on it and your callback function won't be executed.</p>
<p><strong>Internet Explorer &amp; AJAX caching</strong></p>
<p>Yes, Internet Explorer caches your requests. You've got to empty the browser cache before testing the fix I mentioned. Also, you should append a unique parameter to suppress caching, i.e. the current timestamp. Example:</p>
<blockquote>
<p>  var now = new Date();<br />
  // submit with AJAX<br />
  $.getJSON("../inc/exercise_ajax.php?ts=" + now.getTime() + '&amp;' + $(this).serialize(), function(json)</p>
</blockquote>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.ideaday.de/max/2010/05/jquery-ajax-internet-explorer/' addthis:title='jQuery AJAX &amp; Internet Explorer ' ><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/05/jquery-ajax-internet-explorer/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/26 queries in 0.015 seconds using disk: basic
Object Caching 721/775 objects using disk: basic
Content Delivery Network via ideadayblog.ideaday.netdna-cdn.com

Served from: blog.ideaday.de @ 2012-02-10 22:33:01 -->
