<?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; IE</title>
	<atom:link href="http://www.myhtmlworld.com/tag/ie/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>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>
	</channel>
</rss>

