<?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>Thijs Lensselink&#039;s Blog &#187; IE</title>
	<atom:link href="http://lenss.nl/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://lenss.nl</link>
	<description>Webdevelopment and stuff...</description>
	<lastBuildDate>Sun, 05 Feb 2012 11:39:43 +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>Finally no more IE6</title>
		<link>http://lenss.nl/2010/02/finally-no-more-ie6/</link>
		<comments>http://lenss.nl/2010/02/finally-no-more-ie6/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:36:44 +0000</pubDate>
		<dc:creator>Thijs Lensselink</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://lenss.nl/?p=689</guid>
		<description><![CDATA[Something all Web developers wish for is the fact that Internet Explorer 6.0 disappears from the face of this planet. And after some good initiatives like IE6 no more It now seems the biggest in the field is phasing out support for older browsers. Sometimes its good to have so much influence i guess? :) [...]]]></description>
			<content:encoded><![CDATA[<p>Something all Web developers wish for is the fact that Internet Explorer 6.0 disappears from the face of this planet. And after some good initiatives like <a href="http://www.ie6nomore.com/">IE6 no more</a> It now seems the <a href="http://www.google.com">biggest</a> in the field is phasing out support for older browsers. Sometimes its good to have so much influence i guess? :)</p>
<p>Good move!</p>
<p><a href="http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html">http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lenss.nl/2010/02/finally-no-more-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load MOOdalBoxes without clicking links</title>
		<link>http://lenss.nl/2008/10/load-moodalboxes-without-clicking-links/</link>
		<comments>http://lenss.nl/2008/10/load-moodalboxes-without-clicking-links/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 14:27:45 +0000</pubDate>
		<dc:creator>Thijs Lensselink</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[MOOdalBox]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://lenss.nl/?p=141</guid>
		<description><![CDATA[The MOOdalBox script is a great addition to the mootools library. The interface is pretty slick. And easy to style with just CSS. Răzvan Brateş did a great job here. And every now and then i have to implement one of those MOOdalBoxes in a web application. No problem here. Until today all MOOdalBoxes i [...]]]></description>
			<content:encoded><![CDATA[<p>The MOOdalBox script is a great addition to the <a href="http://mootools.net/" target="_blank">mootools</a> library. The interface is pretty slick. And easy to style with just CSS. <a href="http://www.e-magine.ro/" target="_blank">Răzvan Brateş</a> did a great job here. And every now and then i have to implement one of those MOOdalBoxes in a web application. No problem here.</p>
<p>Until today all MOOdalBoxes i used were triggered by simply clicking a link on a page. But today i needed to load a MOOdalBox window on page load. The screen represented some sort of QuickStart menu. Which can be disabled. I had no idea how to trigger the MOOdalBox from javascript. But once i read through the source. It became clear that it should be as easy as calling:</p>
<pre name="code" class="javascript">
MOOdalBox.open(url, title, sizes);
</pre>
<p>This kept giving me the following error:</p>
<p>this.overlay is undefined</p>
<p>Looking through the MOOdalBox source. I noticed the this.overlay property was set inside the init() method. So let&#8217;s try that before we call the open() method.</p>
<pre name="code" class="javascript">
MOOdalBox.init();
MOOdalBox.open(url, title, sizes);
</pre>
<p>This actually worked. I was pretty happy with the result. untill i opened IE 7 to test the same page. Nothing happened. No error&#8217;s and no MOOdalBox. Let&#8217;s try something else. Whenever i need to load something on page load in IE i use the window.onload method.</p>
<pre name="code" class="javascript">
window.onload = function()
    MOOdalBox.init();
    MOOdalBox.open(url, title, sizes);
}
</pre>
<p>Now the overlay was loaded. But still no MOOdalBox on top of it. I figured it had something to do with the DOM not being fully loaded. But i couldn&#8217;t really think of a solution. So of to Google. After a bit of browsing i found somebody with the same problem. And a <a href="http://forum.e-magine.ro/topic/please-help-with-ie" target="_blank">reply</a> from the original author of MOOdalBox. Add a domready event to make it work.</p>
<pre name="code" class="javascript">
window.addEvent('domready', loadMOOdal);
function loadMOOdal() {
    MOOdalBox.open('Quickstart/load', '', '700 500');
}
</pre>
<p>This did it. And my only goal was to make it function properly inside of IE 7. but this also fixes the same problem for IE 6. So a big thanks to Răzvan for creating MOOdalBox and for supplying the fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://lenss.nl/2008/10/load-moodalboxes-without-clicking-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Multiple versions of Internet Explorer on one machine</title>
		<link>http://lenss.nl/2008/06/multiple-versions-of-internet-explorer-on-one-machine/</link>
		<comments>http://lenss.nl/2008/06/multiple-versions-of-internet-explorer-on-one-machine/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 09:54:52 +0000</pubDate>
		<dc:creator>Thijs Lensselink</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet explorer]]></category>

		<guid isPermaLink="false">http://we.designandco.de/?p=14</guid>
		<description><![CDATA[When designing pages for multiple browsers. It&#8217;s pretty much a pain in the ass to get things looking similar cross all browsers. There are many Javascript libraries to help and ease the pain. But it doesn&#8217;t solve all. And hoping people will stop using IE 6 also doesn&#8217;t really help. So we are stuck in [...]]]></description>
			<content:encoded><![CDATA[<p>When designing pages for multiple browsers. It&#8217;s pretty much a pain in the ass to get things looking similar cross all browsers. There are many Javascript libraries to help and ease the pain. But it doesn&#8217;t solve all. And hoping people will stop using IE 6 also doesn&#8217;t really help. So we are stuck in getting things work in all those quirky browsers. So a developer / designer probably has multiple browsers installed. On my dev box i only use Firefox.</p>
<p>But when i have to build a design. I need to check al those browsers. So i have Firefox, Opera and Internet Explorer installed. The problem with internet explorer is that you can&#8217;t run multiple versions on the same machine. Well at least not without a long hacking session. To solve this problem most of the time i used something like Virtual Machine or Virtual Desktop. The problem is that applications like that eat memory. And there is always the minor annoyances with losing focus on my <a href="http://www.zend.com/en/products/studio/" target="_blank">IDE</a> because the VM window is still active.</p>
<p>Some time ago. My coworker Bart send a link to a tool called <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" target="_blank">IETester</a>. This nice little (24mb) tool let&#8217;s you run multiple versions of Internet explorer on one machine. It&#8217;s possible to test pages in version 5.5 and up. even the upcomming (still in beta) version 8 is supported. At the time of writing it is still in alpha stage. But it works great. I did have some unexplainable crashes. And there are some known issue&#8217;s like:</p>
<ul>
<li>When resizing, the content may disappear. I am working to correct it on the next version.</li>
<li>The Previous/Next buttons are not working properly</li>
<li>Focus is not working properly</li>
<li>Java applets are not working</li>
<li>Flash is not working on <span class="wikiword">IE6</span> instance.</li>
</ul>
<p>Besides that it does what it&#8217;s build for. A nice tool to add to your arsenal.</p>
]]></content:encoded>
			<wfw:commentRss>http://lenss.nl/2008/06/multiple-versions-of-internet-explorer-on-one-machine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
