<?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>Sunils blog &#187; Internet Explorer</title>
	<atom:link href="http://www.myhtmlworld.com/tag/internet-explorer/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myhtmlworld.com</link>
	<description>myhtmlworld.com</description>
	<lastBuildDate>Mon, 14 Nov 2011 09:27:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Do we really need to support Internet Explorer(6)?</title>
		<link>http://www.myhtmlworld.com/web-development/do-we-really-need-to-support-internet-explorer-6.html</link>
		<comments>http://www.myhtmlworld.com/web-development/do-we-really-need-to-support-internet-explorer-6.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 12:51:11 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Expression Web SuperPreview for Internet Explorer]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE fixer]]></category>
		<category><![CDATA[IETester]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Push up javascript]]></category>

		<guid isPermaLink="false">http://www.myhtmlworld.com/?p=327</guid>
		<description><![CDATA[I started browsing with Internet Explorer. It was in early 2000’s. At that time I thought it is the only browser which I can connect to internet. I continue using Internet Explorer till the end of 2004! Since at that time I never checked any websites in any other browser. Things changed in the beginning [...]]]></description>
			<content:encoded><![CDATA[<p>I started browsing with Internet Explorer. It was in early 2000’s. At that time I thought it is the only browser which I can connect to internet. I continue using Internet Explorer till the end of 2004! Since at that time I never checked any websites in any other browser.</p>
<p>Things changed in the beginning of 2005. I have joined a  new company. Yes! I have fall in love with Firefox.</p>
<p>What makes me love Firefox browser?</p>
<p><span id="more-327"></span></p>
<ul>
<li>Plugins: Yes. It attracts me a lot. Plugins helps to develop a better a site or giving us some additional capabilities more than a browser like download managers, feeds management etc etc.</li>
<li>We never get bored while browsing the site. Because we can change the look and feel using firefox themes or <a href="/around-my-world/skin-your-firefox-with-personas.html">firefox personas</a>.</li>
<li>Safe and support.</li>
</ul>
<p>In brief it is more safe, customizable and faster.</p>
<p>Microsoft now released their latest Internet Explorer 8. It is hard to the developers to maintain these different versions with in a short period of time. But it is happy to hear that Microsoft trying to follow the web standards!</p>
<p>But how the developers can manage with these versions? Either they can completely ignore the previous versions and go with the newer versions. Because newer version has better support. Otherwise, programmers have to use a lot of filters.</p>
<p>There is some javascripts which advice the users to upgrade their browser. But will the user upgrade their browser? Still lot of people using IE because it is shipped along with Windows operating system. I could not find any other reason for the popularity of IE.</p>
<p>But now people start digging the grave of Internet Explorer 6.</p>
<p>If you are still support the older version of IE? You can use these sources</p>
<p>1. <a rel="external" href="http://www.onderhond.com/tools/ie6fixer/">IE fixer</a>. It will help to fix the IE6 related style issues.<br />
2. <a href="/web-development/pushup-advice-your-visitors-to-upgrade-their-browser.html">Push up javascript</a>: Which will advice your visitors to upgrade their browser<br />
3. <a rel="external" href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a>: Great software which will render the older / latest version of IE.<br />
4. <a href="web-development/expression-web-superpreview-for-internet-explorer-questions.html">Expression Web SuperPreview for Internet Explorer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myhtmlworld.com/web-development/do-we-really-need-to-support-internet-explorer-6.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Is IE? Shortest JavaScript code to find whether the browser is Internet Explorer.</title>
		<link>http://www.myhtmlworld.com/web-development/is-ie-shortest-javascript-code-to-find-whether-the-browser-is-internet-explorer.html</link>
		<comments>http://www.myhtmlworld.com/web-development/is-ie-shortest-javascript-code-to-find-whether-the-browser-is-internet-explorer.html#comments</comments>
		<pubDate>Fri, 30 Jan 2009 14:18:33 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[web development tool]]></category>

		<guid isPermaLink="false">http://www.myhtmlworld.com/?p=139</guid>
		<description><![CDATA[There are a lot of JavaScript codes to find whether the user browser is Internet Explorer. But here is the shortest code to check whether the browser is Internet Explorer. if(&#8216;\v&#8217;==&#8217;v') It will return true if you are using Internet Explorer. So we can write the code like this. if("\v"=="v"){ alert("This browser is Internet Explorer"); [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of JavaScript codes to find whether the user browser is Internet Explorer. But here is the shortest code to check whether the browser is Internet Explorer.</p>
<p>if(&#8216;\v&#8217;==&#8217;v')</p>
<p>It will return true if you are using Internet Explorer.</p>
<p>So we can write the code like this.</p>
<pre lang="JAVASCRIPT" line="1">
<script type="text/javascript">
if("\v"=="v"){
	alert("This browser is Internet Explorer");
}
else{
	alert("This browser is not Internet Explorer");
}
</script>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myhtmlworld.com/web-development/is-ie-shortest-javascript-code-to-find-whether-the-browser-is-internet-explorer.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>YSlow ignores IE conditional comment</title>
		<link>http://www.myhtmlworld.com/web-development/yslow-ignores-conditional-comment.html</link>
		<comments>http://www.myhtmlworld.com/web-development/yslow-ignores-conditional-comment.html#comments</comments>
		<pubDate>Mon, 22 Dec 2008 15:35:29 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Conditional comment]]></category>
		<category><![CDATA[IE conditional comment]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Performance Optimisation]]></category>
		<category><![CDATA[Slow]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.myhtmlworld.com/?p=61</guid>
		<description><![CDATA[When I was checking through some site, I noticed that YSlow will not check style sheets inside the IE conditional comment. If Yslow is not considering the style sheet inside the conditional comment how we can say that site is fully optimized through YSlow. So performance grade is not reliable in this regard. What do [...]]]></description>
			<content:encoded><![CDATA[<p>When I was checking through some site, I noticed that <a title="YSlow" href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a> will not check style sheets inside the <a title="Conditional Comment" href="http://www.quirksmode.org/css/condcom.html" target="_blank">IE conditional comment</a>. If Yslow is not considering the style sheet inside the conditional comment how we can say that site is fully optimized through YSlow. So performance grade is not reliable in this regard.<br />
What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myhtmlworld.com/web-development/yslow-ignores-conditional-comment.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

