<?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>ie &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>object and embed tag position in IE</title>
		<link>/2009/10/30/object-and-embed-tag-position-in-ie/</link>
		<comments>/2009/10/30/object-and-embed-tag-position-in-ie/#respond</comments>
		<pubDate>Fri, 30 Oct 2009 19:00:38 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[object]]></category>

		<guid isPermaLink="false">/?p=748</guid>
		<description><![CDATA[What is OK? If you&#8217;ve written at least once the OBJECT and EMBED tags, without copy/paste you may have been noticed that the place of the EMBED tag is a bit strange. Actually after the OBJECT tag, comes the PARAM sequence, that simply defines different parameters for the flash movie. And what looks strange? The &#8230; <a href="/2009/10/30/object-and-embed-tag-position-in-ie/" class="more-link">Continue reading <span class="screen-reader-text">object and embed tag position in IE</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/01/07/object-forget-about-embed-tag/" rel="bookmark" title="OBJECT &#038; &#8230; forget about EMBED tag!">OBJECT &#038; &#8230; forget about EMBED tag! </a></li>
<li><a href="/2009/02/22/html-object-and-embed-tags/" rel="bookmark" title="Html object &#038; embed tags">Html object &#038; embed tags </a></li>
<li><a href="/2009/02/23/object-and-embed-tags-revealed/" rel="bookmark" title="object and embed tags revealed">object and embed tags revealed </a></li>
<li><a href="/2009/06/08/a-tag-doesnt-apply-hover-on-ie6/" rel="bookmark" title="a tag doesn&#8217;t apply hover on IE6">a tag doesn&#8217;t apply hover on IE6 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>What is OK?</h2>
<p>If you&#8217;ve written at least once the OBJECT and EMBED tags, without copy/paste you may have been noticed that the place of the EMBED tag is a bit strange. Actually after the OBJECT tag, comes the PARAM sequence, that simply defines different parameters for the flash movie.</p>
<h2>And what looks strange?</h2>
<p>The strange thing in all this is that the EMBED tag, which in fact is only one, instead of the case with all the parameters of the OBJECT, is displayed just before the closing of the OJBECT tag.</p>
<h2>Experimenting &#8230;</h2>
<p>What if the embed tag is outside of the OBJECT opening and closing tags. Actually only IE understands this as a problem. Than it displays the move twice!</p>
<p>That&#8217;s why the place of the EMBED is just before closing the OBJECT tag. In that case MSIE doesn&#8217;t &#8220;see&#8221; the EMBED and displays everything correctly!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/01/07/object-forget-about-embed-tag/" rel="bookmark" title="OBJECT &#038; &#8230; forget about EMBED tag!">OBJECT &#038; &#8230; forget about EMBED tag! </a></li>
<li><a href="/2009/02/22/html-object-and-embed-tags/" rel="bookmark" title="Html object &#038; embed tags">Html object &#038; embed tags </a></li>
<li><a href="/2009/02/23/object-and-embed-tags-revealed/" rel="bookmark" title="object and embed tags revealed">object and embed tags revealed </a></li>
<li><a href="/2009/06/08/a-tag-doesnt-apply-hover-on-ie6/" rel="bookmark" title="a tag doesn&#8217;t apply hover on IE6">a tag doesn&#8217;t apply hover on IE6 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/10/30/object-and-embed-tag-position-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setAttribute(&#8216;class&#8217;) and IE</title>
		<link>/2009/09/07/setattributeclass-and-ie/</link>
		<comments>/2009/09/07/setattributeclass-and-ie/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 06:09:44 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[setAttribute]]></category>

		<guid isPermaLink="false">/?p=732</guid>
		<description><![CDATA[What happens on IE, our favorite browser, when you try to setup a class attribute on a DOM element? Actually this is not possible, because setAttribute(&#8216;class&#8217;, &#8216;my-class&#8217;) is obviously working only on non-IE browsers. On IE actually you should setup the class on an element with that structure: element.setAttribute('className', 'my-class');<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/" rel="bookmark" title="CSS Priority: The Difference Between a.my-class and .my-class">CSS Priority: The Difference Between a.my-class and .my-class </a></li>
<li><a href="/2009/12/23/csstext-and-how-it-can-be-very-very-useful/" rel="bookmark" title="cssText and how it can be very very useful">cssText and how it can be very very useful </a></li>
<li><a href="/2010/07/16/friday-algorithms-a-data-structure-javascript-stack/" rel="bookmark" title="Friday Algorithms: A Data Structure: JavaScript Stack">Friday Algorithms: A Data Structure: JavaScript Stack </a></li>
<li><a href="/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/" rel="bookmark" title="jQuery CSS selectors. Change one or more CSS properties!">jQuery CSS selectors. Change one or more CSS properties! </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>What happens on IE, our favorite browser, when you try to setup a class attribute on a DOM element? Actually this is not possible, because setAttribute(&#8216;class&#8217;, &#8216;my-class&#8217;) is obviously working only on non-IE browsers.</p>
<p>On IE actually you should setup the class on an element with that structure:</p>
<blockquote>
<pre>element.setAttribute('className', 'my-class');</pre>
</blockquote>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/" rel="bookmark" title="CSS Priority: The Difference Between a.my-class and .my-class">CSS Priority: The Difference Between a.my-class and .my-class </a></li>
<li><a href="/2009/12/23/csstext-and-how-it-can-be-very-very-useful/" rel="bookmark" title="cssText and how it can be very very useful">cssText and how it can be very very useful </a></li>
<li><a href="/2010/07/16/friday-algorithms-a-data-structure-javascript-stack/" rel="bookmark" title="Friday Algorithms: A Data Structure: JavaScript Stack">Friday Algorithms: A Data Structure: JavaScript Stack </a></li>
<li><a href="/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/" rel="bookmark" title="jQuery CSS selectors. Change one or more CSS properties!">jQuery CSS selectors. Change one or more CSS properties! </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/09/07/setattributeclass-and-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>debug JavaScript on IE6</title>
		<link>/2009/06/22/debug-javascript-on-ie6/</link>
		<comments>/2009/06/22/debug-javascript-on-ie6/#respond</comments>
		<pubDate>Mon, 22 Jun 2009 05:49:23 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[microsoft script debugger]]></category>

		<guid isPermaLink="false">/?p=625</guid>
		<description><![CDATA[The built-in JavaScript debugger While developing your next site, you&#8217;ve may noticed that under IE, specially version 6, it&#8217;s very hard to debug any kind of JavaScript code. Yes actually if you&#8217;ve configured the browser for that purpose you may get any message, which unfortunately is completely useless. In general the message is something like: &#8230; <a href="/2009/06/22/debug-javascript-on-ie6/" class="more-link">Continue reading <span class="screen-reader-text">debug JavaScript on IE6</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/06/24/__flash_removecallback-problem-on-ie6/" rel="bookmark" title="__flash__removeCallback problem on IE6">__flash__removeCallback problem on IE6 </a></li>
<li><a href="/2009/02/08/flash-player-with-debugger-issue/" rel="bookmark" title="flash player with debugger issue">flash player with debugger issue </a></li>
<li><a href="/2010/06/24/zend-framework-inject-javascript-code-in-a-actionview/" rel="bookmark" title="Zend Framework: Inject JavaScript Code in a Action/View">Zend Framework: Inject JavaScript Code in a Action/View </a></li>
<li><a href="/2009/07/27/jquery-debug-plugin/" rel="bookmark" title="jQuery debug plugin">jQuery debug plugin </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>The built-in JavaScript debugger</h2>
<p>While developing your next site, you&#8217;ve may noticed that under IE, specially version 6, it&#8217;s very hard to debug any kind of JavaScript code. Yes actually if you&#8217;ve configured the browser for that purpose you may get any message, which unfortunately is completely useless. In general the message is something like: &#8220;There&#8217;s an script error on some line of the code!&#8221;, but very often there&#8217;s no such line of code or it&#8217;s empty or something else. Actually that poor debugger is giving the error by the generated script code which really does not help.<br />
<a href="/wp-content/uploads/2009/06/mozdev01.png"><img class="size-medium wp-image-626 alignnone" title="Internet Explorer build-in debugger like application" src="/wp-content/uploads/2009/06/mozdev01-300x199.png" alt="" width="300" height="199" srcset="/wp-content/uploads/2009/06/mozdev01-300x199.png 300w, /wp-content/uploads/2009/06/mozdev01.png 437w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<h2>Microsoft Script Debugger</h2>
<p>The installation of Microsoft Script Debugger solves this problem. It gives the line and the code, even highlights the error.</p>
<p><a href="/wp-content/uploads/2009/06/ms-script-debugger-1.gif"><img class="alignnone size-medium wp-image-627" title="microsoft script debugger" src="/wp-content/uploads/2009/06/ms-script-debugger-1-300x182.gif" alt="" width="300" height="182" srcset="/wp-content/uploads/2009/06/ms-script-debugger-1-300x182.gif 300w, /wp-content/uploads/2009/06/ms-script-debugger-1.gif 639w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/06/24/__flash_removecallback-problem-on-ie6/" rel="bookmark" title="__flash__removeCallback problem on IE6">__flash__removeCallback problem on IE6 </a></li>
<li><a href="/2009/02/08/flash-player-with-debugger-issue/" rel="bookmark" title="flash player with debugger issue">flash player with debugger issue </a></li>
<li><a href="/2010/06/24/zend-framework-inject-javascript-code-in-a-actionview/" rel="bookmark" title="Zend Framework: Inject JavaScript Code in a Action/View">Zend Framework: Inject JavaScript Code in a Action/View </a></li>
<li><a href="/2009/07/27/jquery-debug-plugin/" rel="bookmark" title="jQuery debug plugin">jQuery debug plugin </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/06/22/debug-javascript-on-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>remove iframe border on IE</title>
		<link>/2009/06/11/remove-iframe-border-on-ie/</link>
		<comments>/2009/06/11/remove-iframe-border-on-ie/#respond</comments>
		<pubDate>Thu, 11 Jun 2009 06:24:27 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[frameborder]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">/?p=600</guid>
		<description><![CDATA[Well if both style=&#8221;border:[0&#124;none]&#8221; is working and border=&#8221;0&#8243; attribute doesn&#8217;t help, and all this is not working only on IE, the solution is &#8230; frameborder=&#8221;0&#8243; attribute &#60;iframe frameborder=&#8221;0&#8243; &#8230; &#62;&#60;/iframe&#62; is helping<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2011/03/29/scroll-an-iframe-content-to-a-predefined-position/" rel="bookmark" title="Scroll an IFRAME Content to a Predefined Position">Scroll an IFRAME Content to a Predefined Position </a></li>
<li><a href="/2009/06/10/google-adsense-iframes-and-ie/" rel="bookmark" title="Google Adsense, iframes and IE">Google Adsense, iframes and IE </a></li>
<li><a href="/2010/02/12/css-border-radius-vs-images/" rel="bookmark" title="CSS border-radius vs. images!">CSS border-radius vs. images! </a></li>
<li><a href="/2010/02/17/htc-round-the-corners-on-ie/" rel="bookmark" title="HTC?! Round the corners on IE!">HTC?! Round the corners on IE! </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Well if both style=&#8221;border:[0|none]&#8221; is working and border=&#8221;0&#8243; attribute doesn&#8217;t help, and all this is not working only on IE, the solution is &#8230;</p>
<p>frameborder=&#8221;0&#8243; attribute</p>
<blockquote><p>&lt;iframe frameborder=&#8221;0&#8243; &#8230; &gt;&lt;/iframe&gt; is helping</p></blockquote>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2011/03/29/scroll-an-iframe-content-to-a-predefined-position/" rel="bookmark" title="Scroll an IFRAME Content to a Predefined Position">Scroll an IFRAME Content to a Predefined Position </a></li>
<li><a href="/2009/06/10/google-adsense-iframes-and-ie/" rel="bookmark" title="Google Adsense, iframes and IE">Google Adsense, iframes and IE </a></li>
<li><a href="/2010/02/12/css-border-radius-vs-images/" rel="bookmark" title="CSS border-radius vs. images!">CSS border-radius vs. images! </a></li>
<li><a href="/2010/02/17/htc-round-the-corners-on-ie/" rel="bookmark" title="HTC?! Round the corners on IE!">HTC?! Round the corners on IE! </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/06/11/remove-iframe-border-on-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Adsense, iframes and IE</title>
		<link>/2009/06/10/google-adsense-iframes-and-ie/</link>
		<comments>/2009/06/10/google-adsense-iframes-and-ie/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 12:20:11 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">/?p=598</guid>
		<description><![CDATA[What a lovely combination Recently I wrote an article about the Google Adsense problem with page load blocking and than the solution was simple and elegant. You must put your ad in a separate .html file and to include it into your page with an iframe. That gives the page the ability to &#8220;breath&#8221; and &#8230; <a href="/2009/06/10/google-adsense-iframes-and-ie/" class="more-link">Continue reading <span class="screen-reader-text">Google Adsense, iframes and IE</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/06/10/google-adsense-blocks-the-page-load/" rel="bookmark" title="Google Adsense blocks the page load">Google Adsense blocks the page load </a></li>
<li><a href="/2011/03/29/scroll-an-iframe-content-to-a-predefined-position/" rel="bookmark" title="Scroll an IFRAME Content to a Predefined Position">Scroll an IFRAME Content to a Predefined Position </a></li>
<li><a href="/2009/06/11/remove-iframe-border-on-ie/" rel="bookmark" title="remove iframe border on IE">remove iframe border on IE </a></li>
<li><a href="/2010/02/10/manage-javascript-and-css-includes-within-zend-framework-application/" rel="bookmark" title="Manage JavaScript and CSS includes within Zend Framework application">Manage JavaScript and CSS includes within Zend Framework application </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>What a lovely combination</h2>
<p>Recently I wrote an article about the Google Adsense problem with page load blocking and than the solution was simple and elegant. You must put your ad in a separate .html file and to include it into your page with an iframe. That gives the page the ability to &#8220;breath&#8221; and to load faster.</p>
<p>You can see the entire article <a title="Google Adsense in iframe" href="/2009/06/10/google-adsense-blocks-the-page-load/" target="_self">here</a>.</p>
<h2>When everything&#8217;s OK, wait for the IE</h2>
<p>Yes as usual every browser loaded the iframe correclty, except &#8230; <span id="more-598"></span>IE. Both 6 and 7. What was the problem of that lovely browser? Just as I mentioned in my previous article, I put the Google generated code chunk in a .html file and include it with an iframe.</p>
<p>So far so good. But was actually stoped in on IE. All the developer plugins of IE were incapable of helping me.</p>
<h2>Finally the solution</h2>
<p>The solution itself is so strange and stupid. The file you include your ad banner should be named &#8220;index&#8221;. If you have three ads on your page, and three iframes you must include three index.html files, obviously from different directories. That finally made IE working as the other world.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/06/10/google-adsense-blocks-the-page-load/" rel="bookmark" title="Google Adsense blocks the page load">Google Adsense blocks the page load </a></li>
<li><a href="/2011/03/29/scroll-an-iframe-content-to-a-predefined-position/" rel="bookmark" title="Scroll an IFRAME Content to a Predefined Position">Scroll an IFRAME Content to a Predefined Position </a></li>
<li><a href="/2009/06/11/remove-iframe-border-on-ie/" rel="bookmark" title="remove iframe border on IE">remove iframe border on IE </a></li>
<li><a href="/2010/02/10/manage-javascript-and-css-includes-within-zend-framework-application/" rel="bookmark" title="Manage JavaScript and CSS includes within Zend Framework application">Manage JavaScript and CSS includes within Zend Framework application </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/06/10/google-adsense-iframes-and-ie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE developer tools</title>
		<link>/2009/05/25/ie-developer-tools/</link>
		<comments>/2009/05/25/ie-developer-tools/#comments</comments>
		<pubDate>Mon, 25 May 2009 07:11:04 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[DebugBar]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[IE Developer Toolbar]]></category>
		<category><![CDATA[web developer tools]]></category>

		<guid isPermaLink="false">/?p=575</guid>
		<description><![CDATA[Firefox&#8217;s OK, what about IE ? Everybody knows how to debug the front end on Firefox. There are some awsome tools, which help to manage your work. We all use &#8220;Web Developer&#8221; and the ready to enter the history &#8220;Firebug&#8221;. Both tools can be downloaded and installed for free, but what about IE and the &#8230; <a href="/2009/05/25/ie-developer-tools/" class="more-link">Continue reading <span class="screen-reader-text">IE developer tools</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2012/03/02/5-tips-on-how-to-spot-a-bad-developer-and-team-member/" rel="bookmark" title="5 Tips on How to Spot a Bad Developer and Team Member">5 Tips on How to Spot a Bad Developer and Team Member </a></li>
<li><a href="/2009/07/16/jquery-browser-and-os-detection-plugin/" rel="bookmark" title="jQuery browser and OS detection plugin">jQuery browser and OS detection plugin </a></li>
<li><a href="/2010/03/22/php-mobile-devices-http_user_agent-strings/" rel="bookmark" title="PHP: Mobile Devices HTTP_USER_AGENT Strings">PHP: Mobile Devices HTTP_USER_AGENT Strings </a></li>
<li><a href="/2009/04/07/optimize-your-images-improve-the-performance/" rel="bookmark" title="Optimize your images &#8211; improve the performance">Optimize your images &#8211; improve the performance </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>Firefox&#8217;s OK, what about IE ?</h2>
<p>Everybody knows how to debug the front end on Firefox. There are some awsome tools, which help to manage your work. We all use &#8220;Web Developer&#8221; and the ready to enter the history &#8220;Firebug&#8221;. Both tools can be downloaded and installed for free, but what about IE and the misterious DOM rendering there.</p>
<h2>The DebugBar</h2>
<p>One of the two plugins I recommend for IE is IE Developer Toolbar. That plugin perfectly solves the problem of viewing the rendered code from the browser. That helps a lot when debuggin front end, and I mainly use it for that. <strong>Download from <a title="DebugBar" href="http://www.debugbar.com/?langage=en" target="_blank">here</a></strong>.</p>
<h2>IE Developer Toolbar</h2>
<p>That&#8217;s the most famous IE plugin for web developers with no need to be commented. Every web developer with no exception should use it on IE to find the mistery around that browser. <strong>Download from <a title="IE Developer Toolbar" href="http://www.microsoft.com/DownLoads/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en" target="_blank">here</a></strong>.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2012/03/02/5-tips-on-how-to-spot-a-bad-developer-and-team-member/" rel="bookmark" title="5 Tips on How to Spot a Bad Developer and Team Member">5 Tips on How to Spot a Bad Developer and Team Member </a></li>
<li><a href="/2009/07/16/jquery-browser-and-os-detection-plugin/" rel="bookmark" title="jQuery browser and OS detection plugin">jQuery browser and OS detection plugin </a></li>
<li><a href="/2010/03/22/php-mobile-devices-http_user_agent-strings/" rel="bookmark" title="PHP: Mobile Devices HTTP_USER_AGENT Strings">PHP: Mobile Devices HTTP_USER_AGENT Strings </a></li>
<li><a href="/2009/04/07/optimize-your-images-improve-the-performance/" rel="bookmark" title="Optimize your images &#8211; improve the performance">Optimize your images &#8211; improve the performance </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/05/25/ie-developer-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The SWFObject method createSWF problem</title>
		<link>/2009/05/14/the-swfobject-method-createswf-problem/</link>
		<comments>/2009/05/14/the-swfobject-method-createswf-problem/#respond</comments>
		<pubDate>Thu, 14 May 2009 11:36:47 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[createSWF]]></category>
		<category><![CDATA[embedSWF]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[SWFObject]]></category>
		<category><![CDATA[transparent]]></category>
		<category><![CDATA[wmode]]></category>

		<guid isPermaLink="false">/?p=568</guid>
		<description><![CDATA[The Problem Although the SWFObject method &#8211; createSWF is working fine under IE sets the wmode not to be transparent but with the strange value of window, i.e. &#60;PARAM name=&#8221;WMode&#8221; value=&#8221;Window&#8221; /&#62; The Solution is &#8230; to replace the createSWF method calls with other SWFObject method &#8211; embedSWF. There you can simply describe the desired &#8230; <a href="/2009/05/14/the-swfobject-method-createswf-problem/" class="more-link">Continue reading <span class="screen-reader-text">The SWFObject method createSWF problem</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/06/24/__flash_removecallback-problem-on-ie6/" rel="bookmark" title="__flash__removeCallback problem on IE6">__flash__removeCallback problem on IE6 </a></li>
<li><a href="/2009/04/14/load-flash-swf-in-hidden-div/" rel="bookmark" title="load flash .swf in hidden div">load flash .swf in hidden div </a></li>
<li><a href="/2009/02/10/ie-6-problem-with-flash-z-index/" rel="bookmark" title="IE 6 problem with flash z-index">IE 6 problem with flash z-index </a></li>
<li><a href="/2009/02/09/ie-externalinterface-communication-problem/" rel="bookmark" title="IE &#038; ExternalInterface communication problem">IE &#038; ExternalInterface communication problem </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>The Problem</h2>
<p>Although the SWFObject method &#8211; createSWF is working fine under IE sets the wmode not to be transparent but with the strange value of window, i.e. &lt;PARAM name=&#8221;WMode&#8221; value=&#8221;Window&#8221; /&gt;</p>
<h2>The Solution is &#8230;</h2>
<p>to replace the createSWF method calls with other SWFObject method &#8211; embedSWF. There you can simply describe the desired wmode for the flash.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/06/24/__flash_removecallback-problem-on-ie6/" rel="bookmark" title="__flash__removeCallback problem on IE6">__flash__removeCallback problem on IE6 </a></li>
<li><a href="/2009/04/14/load-flash-swf-in-hidden-div/" rel="bookmark" title="load flash .swf in hidden div">load flash .swf in hidden div </a></li>
<li><a href="/2009/02/10/ie-6-problem-with-flash-z-index/" rel="bookmark" title="IE 6 problem with flash z-index">IE 6 problem with flash z-index </a></li>
<li><a href="/2009/02/09/ie-externalinterface-communication-problem/" rel="bookmark" title="IE &#038; ExternalInterface communication problem">IE &#038; ExternalInterface communication problem </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/05/14/the-swfobject-method-createswf-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
