<?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>Internet Explorer &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/internet-explorer/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>JavaScript Objects Coding Style Reviewed</title>
		<link>/2010/12/03/javascript-objects-coding-style-reviewed/</link>
		<comments>/2010/12/03/javascript-objects-coding-style-reviewed/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 10:05:59 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Computer programming]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Curly bracket programming languages]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming style]]></category>
		<category><![CDATA[Software engineering]]></category>
		<category><![CDATA[Where]]></category>

		<guid isPermaLink="false">/?p=2084</guid>
		<description><![CDATA[JS Objects Once I posted about JavaScript object coding style. Back than I made the analogy with PHP array coding style. In breve it&#8217;s useful to format the arrays in PHP simply like that: $data = array( 'key1' =&#62; 'value1', 'key2' =&#62; 'value2', 'key3' =&#62; 'value3', 'key4' =&#62; 'value4', 'key5' =&#62; 'value5', ); Note that &#8230; <a href="/2010/12/03/javascript-objects-coding-style-reviewed/" class="more-link">Continue reading <span class="screen-reader-text">JavaScript Objects Coding Style Reviewed</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/05/19/php-associative-arrays-coding-style/" rel="bookmark" title="PHP Associative Arrays Coding Style">PHP Associative Arrays Coding Style </a></li>
<li><a href="/2010/05/24/javascript-objects-coding-style/" rel="bookmark" title="JavaScript Objects Coding Style">JavaScript Objects Coding Style </a></li>
<li><a href="/2010/05/26/php-conditionals-coding-style/" rel="bookmark" title="PHP: Conditionals Coding Style">PHP: Conditionals Coding Style </a></li>
<li><a href="/2011/05/30/object-oriented-javascript-inheritance/" rel="bookmark" title="Object Oriented JavaScript: Inheritance">Object Oriented JavaScript: Inheritance </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>JS Objects</h2>
<p>Once I posted about <a title="JavaScript Objects Coding style" href="/2010/05/24/javascript-objects-coding-style/" target="_blank">JavaScript object coding style</a>. Back than I made the analogy with PHP array coding style. In breve it&#8217;s useful to format the arrays in PHP simply like that:</p>
<pre lang="php" escaped="true">$data = array(
	'key1' =&gt; 'value1',
	'key2' =&gt; 'value2',
	'key3' =&gt; 'value3',
	'key4' =&gt; 'value4',
	'key5' =&gt; 'value5',
);
</pre>
<p>Note that there is a trailing comma after the last key/value pair. This is not a syntax error and helps you add new elements to the array with no fear to forget the comma. This coding standard is quite well known in the PHP community, but in fact writing JavaScript objects can be &#8220;translated&#8221; to something very similar. The only problem is that the trailing comma in JavaScript will result to an error, especially in Internet Explorer, so it is important to remove it.</p>
<pre lang="javascript">
var obj = {
	key1 : 'value1',
	key2 : 'value2',
	key3 : 'value3',
	key4 : 'value4',
	key5 : 'value5'
};
</pre>
<p>The problem is that when you&#8217;ve to add one key/value pair, you&#8217;ve to add the comma after the last pair. This actually makes it useless.</p>
<h2>Better Solution</h2>
<p>There is another way, much better I think, that may help you more when adding new pairs to the object.</p>
<pre lang="javascript">
var obj = 
	{ key1 : 'value1'
	, key2 : 'value2'
	, key3 : 'value3'
	, key4 : 'value4'
	, key5 : 'value5'
	};
</pre>
<p>In this example you can simply copy/paste the last pair and change the key and value, or you can simply can continue writing the way the object is constructed.</p>
<p>Thus you don&#8217;t have the problem with the last comma and syntax errors.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/05/19/php-associative-arrays-coding-style/" rel="bookmark" title="PHP Associative Arrays Coding Style">PHP Associative Arrays Coding Style </a></li>
<li><a href="/2010/05/24/javascript-objects-coding-style/" rel="bookmark" title="JavaScript Objects Coding Style">JavaScript Objects Coding Style </a></li>
<li><a href="/2010/05/26/php-conditionals-coding-style/" rel="bookmark" title="PHP: Conditionals Coding Style">PHP: Conditionals Coding Style </a></li>
<li><a href="/2011/05/30/object-oriented-javascript-inheritance/" rel="bookmark" title="Object Oriented JavaScript: Inheritance">Object Oriented JavaScript: Inheritance </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/12/03/javascript-objects-coding-style-reviewed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Replace the Broken Images with a Default Image with JavaScript</title>
		<link>/2010/07/01/replace-the-broken-images-with-a-default-image-with-javascript/</link>
		<comments>/2010/07/01/replace-the-broken-images-with-a-default-image-with-javascript/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 12:35:33 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript programming language]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">/?p=1738</guid>
		<description><![CDATA[There is cool JavaScript trick that helps you catch broken images. You know that when the image doesn&#8217;t exist, the http path to the image returns 404 or the path is wrong, the browser doesn&#8217;t display nothing in the most cases. As MSIE is always different it displays an ugly icon saying that there is &#8230; <a href="/2010/07/01/replace-the-broken-images-with-a-default-image-with-javascript/" class="more-link">Continue reading <span class="screen-reader-text">Replace the Broken Images with a Default Image with JavaScript</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/08/25/flexible-javascript-replace-in-a-string/" rel="bookmark" title="Flexible JavaScript &#8211; Replace in a String">Flexible JavaScript &#8211; Replace in a String </a></li>
<li><a href="/2011/02/25/how-to-collect-the-images-and-meta-tags-from-a-webpage-with-php/" rel="bookmark" title="How to Collect the Images and Meta Tags from a Webpage with PHP">How to Collect the Images and Meta Tags from a Webpage with PHP </a></li>
<li><a href="/2009/08/05/jquery-check-whether-image-is-loaded/" rel="bookmark" title="jQuery: check whether image is loaded">jQuery: check whether image is loaded </a></li>
<li><a href="/2010/02/11/javascript-optimization-lazy-loading/" rel="bookmark" title="JavaScript optimization. Lazy loading.">JavaScript optimization. Lazy loading. </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>There is cool JavaScript trick that helps you catch broken images. You know that when the image doesn&#8217;t exist, the http path to the image returns 404 or the path is wrong, the browser doesn&#8217;t display nothing in the most cases. As MSIE is always different it displays an ugly icon saying that there is not an image to load</p>
<p><a href="/wp-content/uploads/2010/07/msie-broken-image.png"><img src="/wp-content/uploads/2010/07/msie-broken-image.png" alt="MSIE broken image icon" title="msie-broken-image" width="148" height="224" class="aligncenter size-full wp-image-1747" /></a></p>
<p>and that is really bad!</p>
<h2>There&#8217;s a Quick Fix &#8230;</h2>
<p>Simply add an onerror handler on the IMG tag</p>
<pre lang="html4strict">
<img src="http://..../broken_url.jpg" onerror="this.src='path_to_default_image'" />
</pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/08/25/flexible-javascript-replace-in-a-string/" rel="bookmark" title="Flexible JavaScript &#8211; Replace in a String">Flexible JavaScript &#8211; Replace in a String </a></li>
<li><a href="/2011/02/25/how-to-collect-the-images-and-meta-tags-from-a-webpage-with-php/" rel="bookmark" title="How to Collect the Images and Meta Tags from a Webpage with PHP">How to Collect the Images and Meta Tags from a Webpage with PHP </a></li>
<li><a href="/2009/08/05/jquery-check-whether-image-is-loaded/" rel="bookmark" title="jQuery: check whether image is loaded">jQuery: check whether image is loaded </a></li>
<li><a href="/2010/02/11/javascript-optimization-lazy-loading/" rel="bookmark" title="JavaScript optimization. Lazy loading.">JavaScript optimization. Lazy loading. </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/07/01/replace-the-broken-images-with-a-default-image-with-javascript/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>All the Site in &#8230; One Request</title>
		<link>/2010/04/24/all-the-site-in-one-request/</link>
		<comments>/2010/04/24/all-the-site-in-one-request/#respond</comments>
		<pubDate>Sat, 24 Apr 2010 12:58:28 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[base64]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Delimiter]]></category>
		<category><![CDATA[E-mail]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[MIME]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Usenet]]></category>

		<guid isPermaLink="false">/?p=1479</guid>
		<description><![CDATA[Is it possible? Yes it is! Actually I stumbled these days on a video where one of the guys talked about a quite interesting technique, that all the site was sent in one response from the server. But how is it possible? Actually everything is collected on the server side, i.e. with PHP which groups &#8230; <a href="/2010/04/24/all-the-site-in-one-request/" class="more-link">Continue reading <span class="screen-reader-text">All the Site in &#8230; One Request</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/06/28/send-authenticated-post-request-with-zend_http_client/" rel="bookmark" title="Send Authenticated POST Request with Zend_Http_Client">Send Authenticated POST Request with Zend_Http_Client </a></li>
<li><a href="/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/" rel="bookmark" title="CSS sprites. Go beyond the limits with base64!">CSS sprites. Go beyond the limits with base64! </a></li>
<li><a href="/2010/04/14/zend_http_client-and-case-sensitivity/" rel="bookmark" title="Zend_Http_Client and Case Sensitivity">Zend_Http_Client and Case Sensitivity </a></li>
<li><a href="/2010/01/13/optimizing-the-web-start-with-the-images/" rel="bookmark" title="Optimizing the web. Start with the images!">Optimizing the web. Start with the images! </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>Is it possible?</h2>
<p>Yes it is! Actually I stumbled these days on a <a href="http://www.yuiblog.com/blog/2010/04/21/video-hpjs/" target="_blank">video</a> where one of the guys talked about a quite interesting technique, that all the site was sent in one response from the server. But how is it possible? Actually everything is collected on the server side, i.e. with PHP which groups everything within a string. Obviously the images are base64ed. Than everything is send to the client with appropriate delimiters and mime types, and the client separates the string and build ups the page.</p>
<h2>Problems</h2>
<p>Of course there are some problems. First of all, as you may guess, MSIE doesn&#8217;t support base64. Another bad thing is that this isn&#8217;t cacheable.</p>
<h2>One Good Use</h2>
<p>There is however a good place to use this technique. In mobile versions. There is no much need of caches and most of all MSIE is not there!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/06/28/send-authenticated-post-request-with-zend_http_client/" rel="bookmark" title="Send Authenticated POST Request with Zend_Http_Client">Send Authenticated POST Request with Zend_Http_Client </a></li>
<li><a href="/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/" rel="bookmark" title="CSS sprites. Go beyond the limits with base64!">CSS sprites. Go beyond the limits with base64! </a></li>
<li><a href="/2010/04/14/zend_http_client-and-case-sensitivity/" rel="bookmark" title="Zend_Http_Client and Case Sensitivity">Zend_Http_Client and Case Sensitivity </a></li>
<li><a href="/2010/01/13/optimizing-the-web-start-with-the-images/" rel="bookmark" title="Optimizing the web. Start with the images!">Optimizing the web. Start with the images! </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/04/24/all-the-site-in-one-request/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vendor Prefixes in CSS</title>
		<link>/2010/03/27/vendor-prefixes-in-css/</link>
		<comments>/2010/03/27/vendor-prefixes-in-css/#respond</comments>
		<pubDate>Sat, 27 Mar 2010 16:36:43 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Free software]]></category>
		<category><![CDATA[FTP clients]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">/?p=1400</guid>
		<description><![CDATA[Vendor Prefixes vs CSS3 Either are bad, because vendor prefixes work on specific browsers, while CSS3 is not implemented fully by those browsers. When talking about vendor prefixes in CSS, let me tell you in breve, what&#8217;s this. If you&#8217;d like to make rounded corner under Mozilla Firefox, you usually use a background image, but &#8230; <a href="/2010/03/27/vendor-prefixes-in-css/" class="more-link">Continue reading <span class="screen-reader-text">Vendor Prefixes in CSS</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<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>
<li><a href="/2010/02/04/css-effective-selector/" rel="bookmark" title="CSS effective selector">CSS effective selector </a></li>
<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>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>Vendor Prefixes vs CSS3</h2>
<p>Either are bad, because vendor prefixes work on specific browsers, while CSS3 is not implemented fully by those browsers. When talking about vendor prefixes in CSS, let me tell you in breve, what&#8217;s this. If you&#8217;d like to make rounded corner under Mozilla Firefox, you usually use a background image, but there&#8217;s another way to do it &#8211; with Mozilla specific CSS:</p>
<pre lang="css">-moz-border-radius: 5px;
</pre>
<p>That&#8217;s bad because it works only on Mozilla based browsers, although there&#8217;s a webkit based similar syntax:</p>
<pre lang="css">-webkit-border-radius: 5px;
</pre>
<p>Even after that our &#8220;favorite&#8221; browser MSIE until version 9 is not displaying any rounded corners.</p>
<p>In other hand CSS3 gives us the possibility to write the simple:</p>
<pre lang="css">border-radius:5px;
</pre>
<p>which is not implemented in many currently used browsers, but it may be used for progressive enhancements.</p>
<h2>In Breve &#8230;</h2>
<p>Everybody&#8217;s talking about vendor prefixes after the famous <a href="http://www.quirksmode.org/blog/archives/2010/03/css_vendor_pref.html" target="_blank">post of PPK</a>, but there are both opinions &#8211; pros and cons. However it&#8217;s good to use it, but very carefully, and think about what CSS3 may give you!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<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>
<li><a href="/2010/02/04/css-effective-selector/" rel="bookmark" title="CSS effective selector">CSS effective selector </a></li>
<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>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/03/27/vendor-prefixes-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS border-radius vs. images!</title>
		<link>/2010/02/12/css-border-radius-vs-images/</link>
		<comments>/2010/02/12/css-border-radius-vs-images/#respond</comments>
		<pubDate>Fri, 12 Feb 2010 09:24:22 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft Corporation]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Tableless web design]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[web designers]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">/?p=1082</guid>
		<description><![CDATA[Rounded corners This is one of the main problems of web design and development now, even if it sounds strange. The thing is that with round corners the elements become more nice and groovy and most of the web designers make such design templates. The problem than comes over the web developer who&#8217;s supposed to &#8230; <a href="/2010/02/12/css-border-radius-vs-images/" class="more-link">Continue reading <span class="screen-reader-text">CSS border-radius vs. images!</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/03/27/vendor-prefixes-in-css/" rel="bookmark" title="Vendor Prefixes in CSS">Vendor Prefixes in CSS </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>
<li><a href="/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/" rel="bookmark" title="CSS sprites. Go beyond the limits with base64!">CSS sprites. Go beyond the limits with base64! </a></li>
<li><a href="/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/" rel="bookmark" title="Cross-browser rounded corners! Works on IE but, but not on Opera!">Cross-browser rounded corners! Works on IE but, but not on Opera! </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>Rounded corners</h2>
<p>This is one of the main problems of web design and development now, even if it sounds strange. The thing is that with round corners the elements become more nice and groovy and most of the web designers make such design templates. The problem than comes over the web developer who&#8217;s supposed to convert this into HTML and CSS. Of course it would be nice if all browsers support rounded corners in CSS, but they don&#8217;t and guess what IE fully doesn&#8217;t support it.</p>
<blockquote>
<pre>-moz and -webkit</pre>
</blockquote>
<p>Most of you have heart about this patches in CSS when you can use this prefixes for Mozilla based and Safari&#8217;s Webkit based browsers. Than you can use border radius with no pain, and you get the same effect as with using images.</p>
<blockquote>
<pre>-moz-border-radius : 4px;
-webkit-border-radius : 4px;
</pre>
</blockquote>
<p>Of course on IE this doesn&#8217;t work and the element remains with square corners. But what the question is, should we make both versions for non IE browsers without images and a version for the &#8220;great&#8221; MSIE and all of its versions?</p>
<h2>My answer is: no!</h2>
<p>Although many sites do that, see vimeo for instance, there&#8217;s no need to support that. As the rumor and the MSIE blog says in IE9 which is &#8230; coming soon there will be &#8211; <strong>border-radius</strong> property.</p>
<h2>That&#8217;s awesome!</h2>
<p>Finally Microsoft has done something good! So stop using background images! This is hard to maintain, difficult to make and it&#8217;s bad for the browser loading time, because of the extra images/sprites.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/03/27/vendor-prefixes-in-css/" rel="bookmark" title="Vendor Prefixes in CSS">Vendor Prefixes in CSS </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>
<li><a href="/2010/02/05/css-sprites-go-beyond-the-limits-with-base64/" rel="bookmark" title="CSS sprites. Go beyond the limits with base64!">CSS sprites. Go beyond the limits with base64! </a></li>
<li><a href="/2010/02/15/cross-browser-rounded-corners-works-on-ie-but-but-not-on-opera/" rel="bookmark" title="Cross-browser rounded corners! Works on IE but, but not on Opera!">Cross-browser rounded corners! Works on IE but, but not on Opera! </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/02/12/css-border-radius-vs-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StageDisplayState.FULL_SCREEN under IE</title>
		<link>/2009/03/10/stagedisplaystate-full-screen-under-ie/</link>
		<comments>/2009/03/10/stagedisplaystate-full-screen-under-ie/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 06:51:59 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">/?p=324</guid>
		<description><![CDATA[Why the fullscreen of flash movies don't work under IE? Here's the answer<div class='yarpp-related-rss'>

Related posts:<ol>
<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>
<li><a href="/2009/07/08/externalinterface-from-javascript-to-ie-firefox/" rel="bookmark" title="ExternalInterface from JavaScript to IE/Firefox">ExternalInterface from JavaScript to IE/Firefox </a></li>
<li><a href="/2009/10/30/object-and-embed-tag-position-in-ie/" rel="bookmark" title="object and embed tag position in IE">object and embed tag position in IE </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>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>If someone wanders why the fullscreen doesn&#8217;t work correctly under IE, after calling StageDisplayState.FULL_SCREEN in Flex &#8211; there&#8217;s the answer. Just don&#8217;t forget to add</p>
<blockquote><p><span style="color: #808080;"><em>&lt;param name=&#8221;allowFullScreen&#8221; value=&#8221;true&#8221;&gt;</em></span></p></blockquote>
<p>parameter of the object tag. You may also set <em><strong>allowFullScreen=&#8221;true&#8221;</strong></em> of embed tag.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<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>
<li><a href="/2009/07/08/externalinterface-from-javascript-to-ie-firefox/" rel="bookmark" title="ExternalInterface from JavaScript to IE/Firefox">ExternalInterface from JavaScript to IE/Firefox </a></li>
<li><a href="/2009/10/30/object-and-embed-tag-position-in-ie/" rel="bookmark" title="object and embed tag position in IE">object and embed tag position in IE </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>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/03/10/stagedisplaystate-full-screen-under-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Html object &#038; embed tags</title>
		<link>/2009/02/22/html-object-and-embed-tags/</link>
		<comments>/2009/02/22/html-object-and-embed-tags/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 14:31:08 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[active x]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[autohigh]]></category>
		<category><![CDATA[autolow]]></category>
		<category><![CDATA[classid]]></category>
		<category><![CDATA[codebase]]></category>
		<category><![CDATA[embed tag]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html tags]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[java applet]]></category>
		<category><![CDATA[JW FLV Player]]></category>
		<category><![CDATA[movie attribute]]></category>
		<category><![CDATA[Netscape]]></category>
		<category><![CDATA[object tag]]></category>
		<category><![CDATA[Opera browser]]></category>
		<category><![CDATA[pluginspage]]></category>
		<category><![CDATA[semantics]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[wmode transparent]]></category>

		<guid isPermaLink="false">/?p=184</guid>
		<description><![CDATA[Why the object and embed tags both are used for putting flash movie in the HTML. What are the specifications about. Which attributes to put on object and which on embed tags.<div class='yarpp-related-rss'>

Related posts:<ol>
<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/10/30/object-and-embed-tag-position-in-ie/" rel="bookmark" title="object and embed tag position in IE">object and embed tag position in IE </a></li>
<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/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[<p>Maybe almost 90 % of the web developers world wide are using widely the <strong>&lt;embed&gt;</strong> and <strong>&lt;object&gt;</strong> HTML tags, but in the most cases do not understand the semantics and syntax of them.</p>
<p>Very well known is that these tags help to put a flash movie into the HTML, but why they are two, and can they be used in other cases remains unanswered.</p>
<p>These tags, in general, are really most used to put flash movie into the web site, and as anyone can guess they are two cause of the differences in the web, specially between the web browsers. The <strong>&lt;object&gt;</strong> tag helps for the browser who use ActiveX controls to display properly the flash movie. In fact the newest Internet Explorer browsers like 7 version and 8 beta, display the movie correctly even without the <strong>&lt;object&gt;</strong> tag, but not always those flash movies work in the expected manner. Somethimes there are problems with autoplay or something like that. Especially this can be problematic when using some kind of .flv player. In that case (depending from the player) the movie initialize but the required .flv does not load and play. This was the problem I wrote for in my previous post about <a href="/2009/02/20/jw-flv-media-player-issue-under-opera/">Opera and JW FLV Player</a>.</p>
<p>As you may guess the <strong>&lt;object&gt;</strong> tag can handle much more the flash movie, but as many other entities as there are ActiveX controls.</p>
<p>To be more exact the <strong>&lt;object&gt;</strong> tag is for Internet Explorer, while the <strong>&lt;embed&gt;</strong> tag is for Netscape and related to it browsers using Netscape plugin to display a flash movie. More detailed information can be found on Adobe site:</p>
<p><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_4150">http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_4150</a></p>
<p>All the specification can be found online but more important is to mention the semantics of some of the attributes.</p>
<p>For both of the tags valid attributes are width and height. They can be either pixels or percentage, which are relative from the element containing the object/embed pair, i.e. if the flash is in a div with fixed width of 800px and the object/embed pair is 100% width the movie will became 800px wide.</p>
<p><em><strong>Notice:</strong> some browsers do not calculate the height correctly when the height is set in percentage.</em></p>
<p>For the <strong>&lt;object&gt;</strong> tag only there should be <strong>classid</strong>, <strong>codebase</strong>, <strong>movie </strong>attributes, while for the <strong>&lt;embed&gt;</strong> tag only is <strong>src </strong>and <strong>pluginspage</strong>.</p>
<p>see which attributes are mandatory and which one are not at: <a href="/2009/02/23/object-and-embed-tags-revealed/">object and embed tags revealed</a></p>
<p><strong><br />
</strong></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<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/10/30/object-and-embed-tag-position-in-ie/" rel="bookmark" title="object and embed tag position in IE">object and embed tag position in IE </a></li>
<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/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/02/22/html-object-and-embed-tags/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>IE &#038; ExternalInterface communication problem</title>
		<link>/2009/02/09/ie-externalinterface-communication-problem/</link>
		<comments>/2009/02/09/ie-externalinterface-communication-problem/#respond</comments>
		<pubDate>Mon, 09 Feb 2009 11:17:39 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[communication issue]]></category>
		<category><![CDATA[ExternalInterface]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">/?p=156</guid>
		<description><![CDATA[Do not use only &#8217;embed&#8217; tag when using Flex 3/Flash Actionscript 3 ExternalInterface. The communcation with only embed tag works with Firefox and no other browser. If you want to put the IE on work add the &#8216;object&#8217; tag as well.<div class='yarpp-related-rss'>

Related posts:<ol>
<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/07/08/externalinterface-from-javascript-to-ie-firefox/" rel="bookmark" title="ExternalInterface from JavaScript to IE/Firefox">ExternalInterface from JavaScript to IE/Firefox </a></li>
<li><a href="/2009/03/10/stagedisplaystate-full-screen-under-ie/" rel="bookmark" title="StageDisplayState.FULL_SCREEN under IE">StageDisplayState.FULL_SCREEN under IE </a></li>
<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>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Do not use only &#8217;embed&#8217; tag when using Flex 3/Flash Actionscript 3 ExternalInterface. The communcation with only embed tag works with Firefox and no other browser. If you want to put the IE on work add the &#8216;object&#8217; tag as well.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<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/07/08/externalinterface-from-javascript-to-ie-firefox/" rel="bookmark" title="ExternalInterface from JavaScript to IE/Firefox">ExternalInterface from JavaScript to IE/Firefox </a></li>
<li><a href="/2009/03/10/stagedisplaystate-full-screen-under-ie/" rel="bookmark" title="StageDisplayState.FULL_SCREEN under IE">StageDisplayState.FULL_SCREEN under IE </a></li>
<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>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/02/09/ie-externalinterface-communication-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
