<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-8381921667293967975</atom:id><lastBuildDate>Fri, 01 Nov 2024 11:34:17 +0000</lastBuildDate><category>HTML5</category><category>Canvas</category><category>Javascript</category><category>CSS</category><category>DOM</category><category>Doctype</category><category>Form</category><category>HTML</category><category>Input Types</category><category>Internet Explorer</category><category>Modernizr</category><category>Tips</category><title>Html 5 Howto</title><description>BLOG IS ABOUT HTML 5 TECHNOLOGY. HTML 5 EXAMPLES, CODE SNIPPETS, HOWTO&#39;S AND TIPS.</description><link>http://html5howto.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-4803826988064046161</guid><pubDate>Tue, 13 Sep 2011 17:45:00 +0000</pubDate><atom:updated>2011-09-13T10:47:38.669-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Form</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><category domain="http://www.blogger.com/atom/ns#">Input Types</category><title>New Input Types in Html5</title><description>Html5 comes with new input types for forms that allows you do a &lt;em&gt;better input control&lt;/em&gt; and &lt;em&gt;validation&lt;/em&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;

Email&lt;/h3&gt;
This &lt;em&gt;input type&lt;/em&gt; ensures that the value entered is a &lt;em&gt;valid email address&lt;/em&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;emailform&quot;&gt;
&lt;label for=&quot;e1&quot;&gt;Email:&lt;/label&gt;&lt;input id=&quot;e1&quot; name=&quot;email&quot; type=&quot;email&quot; value=&quot;wrong @ email&quot; /&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/form&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;email&quot;&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;




&lt;/h3&gt;
&lt;h3&gt;







URL&lt;/h3&gt;
This &lt;em&gt;input type&lt;/em&gt; ensures that the value entered is a &lt;em&gt;valid url&lt;/em&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;urlform&quot;&gt;
&lt;label for=&quot;e2&quot;&gt;URL:&lt;/label&gt;&lt;input id=&quot;e2&quot; name=&quot;url&quot; type=&quot;url&quot; value=&quot;not a url&quot; /&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/form&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;url&quot;&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;












Number&lt;/h3&gt;
The value must be a &lt;em&gt;floating point number&lt;/em&gt;. When you enter a value which is not a number, it will be cleared after the focus moves away.&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;numberForm&quot;&gt;
&lt;label for=&quot;e3&quot;&gt;Number:&lt;/label&gt;&lt;input id=&quot;e3&quot; name=&quot;number&quot; type=&quot;number&quot; /&gt;&lt;/form&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;number&quot;&amp;gt;&amp;nbsp;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h3&gt;



&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;



Date&lt;/h3&gt;
This &lt;em&gt;input type&lt;/em&gt; is for selecting dates.
&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;dateform&quot;&gt;
&lt;label for=&quot;e4&quot;&gt;Date:&lt;/label&gt;&lt;input id=&quot;e4&quot; name=&quot;date&quot; type=&quot;date&quot; /&gt;&lt;/form&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;date&quot;&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;


Range&lt;/h3&gt;
This &lt;em&gt;input type&lt;/em&gt; allows you to select a value form a &lt;em&gt;range of numbers&lt;/em&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;rangeform&quot;&gt;
&lt;label for=&quot;e4&quot;&gt;Range:&lt;/label&gt;&lt;input id=&quot;e4&quot; max=&quot;100&quot; min=&quot;0&quot; name=&quot;range&quot; type=&quot;range&quot; /&gt;&lt;/form&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;range&quot; max=&quot;100&quot; min=&quot;0&quot;&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;












Search&lt;/h3&gt;
This &lt;em&gt;input type&lt;/em&gt; is a search field, same as textbox.
&lt;br /&gt;
&lt;br /&gt;
&lt;form id=&quot;searchform&quot;&gt;
&lt;label for=&quot;e5&quot;&gt;Search:&lt;/label&gt;&lt;input id=&quot;e5&quot; name=&quot;search&quot; type=&quot;search&quot; /&gt;&lt;/form&gt;
&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;input type=&quot;search&quot;&amp;gt;&lt;/pre&gt;</description><link>http://html5howto.blogspot.com/2011/09/new-input-types-in-html5.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-3439653393581003716</guid><pubDate>Tue, 30 Aug 2011 18:56:00 +0000</pubDate><atom:updated>2011-08-30T20:39:41.099-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML</category><category domain="http://www.blogger.com/atom/ns#">Internet Explorer</category><title>Html Conditional Comments for Internet Explorer</title><description>Conditional comments are used to detect special versions of browsers. &lt;em&gt;Browser detection is used for browser compatibility and correct rendering.&lt;/em&gt; Here are some helpful tables for using &quot;&lt;strong&gt;Html Comments&lt;/strong&gt;&quot;;&lt;br /&gt;
&lt;br /&gt;
Comment syntax table:&lt;br /&gt;
&lt;br /&gt;
&lt;table class=&quot;clsStd&quot; style=&quot;border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-collapse: collapse; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: black; font-family: &#39;Segoe UI&#39;, Verdana, Arial; font-size: 13px; text-align: left; width: 540px;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Comment type&lt;/th&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Syntax or possible value&lt;/th&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;standard HTML comment&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;&amp;lt;!--&amp;nbsp;Comment content &amp;nbsp;--&amp;gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;downlevel-hidden&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;&amp;lt;!--[if&amp;nbsp;&lt;em&gt;expression&lt;/em&gt;]&amp;gt;&amp;nbsp;&lt;em&gt;HTML&lt;/em&gt;&amp;nbsp;&amp;lt;![endif]--&amp;gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;downlevel-revealed&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;&amp;lt;![if&amp;nbsp;&lt;em&gt;expression&lt;/em&gt;]&amp;gt;&amp;nbsp;&lt;em&gt;HTML&lt;/em&gt;&amp;nbsp;&amp;lt;![endif]&amp;gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
Supported features table:&lt;br /&gt;
&lt;br /&gt;
&lt;table class=&quot;clsStd&quot; style=&quot;border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-collapse: collapse; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: black; font-family: &#39;Segoe UI&#39;, Verdana, Arial; font-size: 13px; text-align: left; width: 540px;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Item&lt;/th&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Example&lt;/th&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Comment&lt;/th&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;IE&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if IE]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The string &quot;IE&quot; is a&amp;nbsp;&lt;em&gt;feature&lt;/em&gt;&amp;nbsp;corresponding to the version of Internet Explorer used to view the Web page.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;value&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if IE 7]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;An integer or floating point numeral corresponding to the&amp;nbsp;&lt;em&gt;version&lt;/em&gt;&amp;nbsp;of the browser. Returns a Boolean value of true if the version number matches the browser version.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;WindowsEdition&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if WindowsEdition]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;Internet Explorer&amp;nbsp;8 on Windows&amp;nbsp;7. The string &quot;WindowsEdition&quot; is a&amp;nbsp;&lt;em&gt;feature&lt;/em&gt;&amp;nbsp;corresponding to the edition of Windows used to view the Web page.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;value&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if WindowsEdition 1]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;An integer corresponding to the&amp;nbsp;&lt;em&gt;edition&lt;/em&gt;&amp;nbsp;of Windows used to view the Web page. Returns a Boolean value of true if the value matches the edition being used.&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;true&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if true]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;Always evaluates to true.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;false&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if false]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;Always evaluates to false.&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
Operators table:&lt;br /&gt;
&lt;br /&gt;
&lt;table class=&quot;clsStd&quot; style=&quot;border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-collapse: collapse; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: black; font-family: &#39;Segoe UI&#39;, Verdana, Arial; font-size: 13px; text-align: left; width: 540px;&quot;&gt;&lt;tbody&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Item&lt;/th&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Example&lt;/th&gt;&lt;th style=&quot;background-color: #e5e5e5; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 1.077em; height: 21px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;&quot;&gt;Comment&lt;/th&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;!&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if !IE]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The NOT operator. This is placed immediately in front of the&amp;nbsp;&lt;em&gt;feature&lt;/em&gt;,&amp;nbsp;&lt;em&gt;operator&lt;/em&gt;, or&amp;nbsp;&lt;em&gt;subexpression&lt;/em&gt;&amp;nbsp;to reverse the Boolean meaning of the expression.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;lt&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if lt IE 5.5]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The less-than operator. Returns true if the first argument is less than the second argument.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;lte&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if lte IE 6]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The less-than or equal operator. Returns true if the first argument is less than or equal to the second argument.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;gt&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if gt IE 5]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The greater-than operator. Returns true if the first argument is greater than the second argument.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;gte&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if gte IE 7]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The greater-than or equal operator. Returns true if the first argument is greater than or equal to the second argument.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;( )&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if !(IE 7)]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;Subexpression operators. Used in conjunction with boolean operators to create more complex expressions.&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;&amp;amp;&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if (gt IE 5)&amp;amp;(lt IE 7)]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The AND operator. Returns true if all subexpressions evaluate to true&lt;/td&gt;&lt;/tr&gt;
&lt;tr style=&quot;vertical-align: top;&quot;&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;|&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;[if (IE 6)|(IE 7)]&lt;/td&gt;&lt;td style=&quot;background-color: white; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; line-height: 18px; margin-bottom: 1px; margin-left: 1px; margin-right: 1px; margin-top: 1px; padding-bottom: 9px; padding-left: 4px; padding-right: 4px; padding-top: 9px;&quot;&gt;The OR operator. Returns true if any of the subexpressions evaluates to true.&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
Here is an example;&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;!--[if IE 9]&amp;gt;
&amp;lt;p&amp;gt;Welcome to Internet Explorer 9.&amp;lt;/p&amp;gt;
&amp;lt;![endif]--&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
For more information, See:&amp;nbsp;&lt;a class=&quot;externallink&quot; href=&quot;http://msdn.microsoft.com/en-us/library/ms537512.aspx&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/en-us/library/ms537512.aspx&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description><link>http://html5howto.blogspot.com/2011/08/html-conditional-comments-for-internet.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-5299680892513009214</guid><pubDate>Sun, 28 Aug 2011 20:43:00 +0000</pubDate><atom:updated>2011-08-30T21:16:45.418-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Canvas</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><title>How to: Draw an Image in HTML5 Canvas</title><description>I will show you an example how to set up a canvas and draw in it using &quot;&lt;strong&gt;HTML5 canvas and image object&lt;/strong&gt;&quot;.&lt;br /&gt;
&lt;br /&gt;
First, you must insert a canvas in the html body:&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;canvas id=&quot;mycanvas&quot; width=&quot;200&quot; height=&quot;200&quot;&amp;gt;&amp;lt;/canvas&amp;gt;&lt;/pre&gt;&lt;br /&gt;
Then you can draw the image using 2D canvas context and image object. Like this:&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-js&quot;&gt;var canvas = document.getElementById(&#39;mycanvas&#39;);
var drawingContext = canvas.getContext(&#39;2d&#39;);
var img = new Image();
img.src = &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidEBkMVnAtEEzw8S26ScVRKgr4KzU4dsFBwtj-hPKTXgmM2zNYxYErmDligVS6XcWjEem_v_9k1s00Vo8ObVKQtDZV90LYX_J895q6lTJRQwHDsDuOFiPcU9VHBuCMvXgTeEHN_6WKQws/s1600/car-logo.png&quot;;
drawingContext.drawImage(img, 50, 50);
&lt;/pre&gt;&lt;br /&gt;
In the code above we get the canvas element by using the id. Then we created the 2D context instance by calling&amp;nbsp;&lt;code&gt;getContext&lt;/code&gt; function of the context element.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
The we created&amp;nbsp;a new image instance and then we assigned the image url to&amp;nbsp;the src property of the Image object.&lt;br /&gt;
&lt;br /&gt;
Finally we draw the image by calling the&amp;nbsp;&lt;code&gt;drawImage()&amp;nbsp;&lt;/code&gt;function of the canvas context.&amp;nbsp;The first parameter of the function is an image object, the second is the x-position and the third is the y-position.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;#&quot; onclick=&quot;javascript:draw_image();return false;&quot; id=&quot;clictToDrawImg&quot;&gt;Click to draw an image&lt;/a&gt;&lt;br /&gt;
&lt;canvas height=&quot;200&quot; id=&quot;myCanvas&quot; style=&quot;border: 1px solid #c3c3c3;&quot; width=&quot;200&quot;&gt;Your browser does not support the canvas element.&lt;/canvas&gt;&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function draw_image() {
   var canvas = document.getElementById(&quot;myCanvas&quot;);
   //reset canvas
   canvas.width = canvas.width;
   var drawingContext = canvas.getContext(&quot;2d&quot;);
   var img = new Image();
   img.src = &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidEBkMVnAtEEzw8S26ScVRKgr4KzU4dsFBwtj-hPKTXgmM2zNYxYErmDligVS6XcWjEem_v_9k1s00Vo8ObVKQtDZV90LYX_J895q6lTJRQwHDsDuOFiPcU9VHBuCMvXgTeEHN_6WKQws/s1600/car-logo.png&quot;;
   drawingContext.drawImage(img, 50, 50);
}
&lt;/script&gt;</description><link>http://html5howto.blogspot.com/2011/08/how-to-draw-image-in-html5-canvas.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-935284765657090602</guid><pubDate>Sat, 27 Aug 2011 12:08:00 +0000</pubDate><atom:updated>2011-12-04T12:44:51.510-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Canvas</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><category domain="http://www.blogger.com/atom/ns#">Tips</category><title>Html5 Tip: How Can I Reset a Canvas</title><description>&lt;em&gt;Changing the width or height of a canvas element will remove its contents and reset all the properties (like fillstyle) of its drawing context to their default values.&lt;/em&gt; You don’t even need to change the width; you can simply set it to its current value, like this:&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;var canvas = document.getElementById(&quot;mycanvas&quot;);
canvas.width = canvas.width;
&lt;/pre&gt;</description><link>http://html5howto.blogspot.com/2011/08/html5-tip-how-can-i-reset-canvas.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-3381393680564103460</guid><pubDate>Sat, 27 Aug 2011 11:07:00 +0000</pubDate><atom:updated>2011-08-30T21:47:21.939-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Canvas</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><title>HTML5 Canvas Tag</title><description>&lt;em&gt;The canvas element can be used for rendering graphs, game graphics, or other visual images on the fly.&lt;/em&gt; Canvas is currently a &quot;&lt;strong&gt;2D&lt;/strong&gt;&quot; base for &lt;em&gt;drawing on using JavaScript.&lt;/em&gt; &quot;&lt;strong&gt;3D API&lt;/strong&gt;&quot; is not supported yet. To use canvas element; you must define the canvas tag and then &quot;&lt;strong&gt;draw shapes using Javascript functions&lt;/strong&gt;&quot;.&lt;br /&gt;
&lt;br /&gt;
The definition of the canvas element is like this:&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;canvas id=&quot;mycanvas&quot;&amp;nbsp;height=&quot;200&quot; width=&quot;200&quot;&amp;gt;&amp;lt;/canvas&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
this is a blank white space that you can draw. Once you define the tag, you can draw on it using the 2D drawing context. You can get the drawing context using .getContext(&#39;2d&#39;) function. Using 2D drawing context you can draw rectangle, path, text, gradients and images.&lt;br /&gt;
&lt;br /&gt;
You can &quot;&lt;strong&gt;draw a rectangle&lt;/strong&gt;&quot; like this:&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-js&quot;&gt;function draw_rectange() {
&amp;nbsp; var canvas = document.getElementById(&quot;mycanvas&quot;);
&amp;nbsp; var drawingContext = canvas.getContext(&quot;2d&quot;);
&amp;nbsp; drawingContext.fillStyle = &quot;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;;&quot;&gt;#FF0000&lt;/span&gt;&quot;;
&amp;nbsp; drawingContext.fillRect(40, 30, 120, 80);
}&lt;/pre&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The fillRect(x, y, width, height) function draws a rectangle filled with the current fill style. x and y are the coordinates where the rectangle will be placed. width and height are the sizes of the rectangle.&lt;br /&gt;
&lt;br /&gt;
The &lt;code&gt;&lt;span style=&quot;font-family: Consolas;&quot;&gt;fillStyle&lt;/span&gt;&lt;/code&gt; property can be &quot;&lt;strong&gt;a CSS color&lt;/strong&gt;&quot;, &quot;&lt;strong&gt;a pattern&lt;/strong&gt;&quot;, or &quot;&lt;strong&gt;a gradient&lt;/strong&gt;&quot;. The default &lt;code&gt;&lt;span style=&quot;font-family: Consolas;&quot;&gt;fillStyle&lt;/span&gt;&lt;/code&gt; is solid black. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.blogger.com/post-edit.g?blogID=8381921667293967975&amp;amp;postID=3381393680564103460&amp;amp;from=pencil#&quot; id=&quot;clictToDrawRec&quot;&gt;Click to draw rectangle&lt;/a&gt;&lt;br /&gt;
&lt;canvas height=&quot;200&quot; id=&quot;myCanvas&quot; style=&quot;border: 1px solid #c3c3c3;&quot; width=&quot;200&quot;&gt;Your browser does not support the canvas element.&lt;/canvas&gt;&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function draw_rectange() {
   var canvas = document.getElementById(&quot;myCanvas&quot;);
   //reset canvas
   canvas.width = canvas.width;
   var drawingContext = canvas.getContext(&quot;2d&quot;);
   drawingContext.fillStyle = &quot;#FF0000&quot;;
   drawingContext.fillRect(40, 30, 120, 80);
}
$(window).ready(function(){
   var canvas = document.getElementById(&quot;myCanvas&quot;);
   if(canvas.getContext){
     $(&quot;#clictToDrawRec&quot;).css(&quot;display&quot;,&quot;none&quot;);
     draw_rectange();
   }
});
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
Internet Explorer 7 and 8 require the third-party &lt;a class=&quot;externallink&quot; href=&quot;http://code.google.com/p/explorercanvas/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;explorercanvas&lt;/a&gt; library. Internet Explorer 9 supports &lt;code&gt;&amp;lt;canvas&amp;gt;&lt;/code&gt; natively.</description><link>http://html5howto.blogspot.com/2011/08/html5-canvas-tag.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-7289644350704929250</guid><pubDate>Fri, 26 Aug 2011 23:31:00 +0000</pubDate><atom:updated>2011-08-30T20:22:56.030-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML5</category><category domain="http://www.blogger.com/atom/ns#">Javascript</category><category domain="http://www.blogger.com/atom/ns#">Modernizr</category><title>How to detect HTML5 support</title><description>There are four basic techniques for detecting whether a browser supports a particular feature.&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Check if a certain property exists on a global object (such as window or navigator).&lt;/li&gt;
&lt;li&gt;Create an element, then check if a certain property exists on that element.&lt;/li&gt;
&lt;li&gt;Create an element, check if a certain method exists on that element, then call the method and check the value it returns.&lt;/li&gt;
&lt;li&gt;Create an element, set a property to a certain value, then check if the property has retained its value.&lt;/li&gt;
&lt;/ol&gt;
Or you can use &lt;a class=&quot;externallink&quot; href=&quot;http://www.modernizr.com/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Modernizr&lt;/a&gt; which is an &lt;strong&gt;open-source Javascript library&lt;/strong&gt; that &lt;em&gt;makes it easy for web designers and helps you to detect the capabilities of the visitor’s browser.&lt;/em&gt;</description><link>http://html5howto.blogspot.com/2011/08/how-to-detect-html5-support.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-8188933156607859651</guid><pubDate>Sun, 31 Jul 2011 12:39:00 +0000</pubDate><atom:updated>2011-08-30T21:00:38.898-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Doctype</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><title>Upgrading to HTML5</title><description>This is as simple as changing your doctype. &lt;em&gt;The doctype should be on the first line of every HTML page.&lt;/em&gt; In HTML5, the &lt;strong&gt;doctype&lt;/strong&gt; is:&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-html&quot;&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;em&gt;HTML5 doctype won’t break your existing markup&lt;/em&gt;, because all the tags defined in HTML 4 are still supported in HTML5.</description><link>http://html5howto.blogspot.com/2011/07/upgrading-to-html5.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8381921667293967975.post-396483714303159047</guid><pubDate>Sat, 23 Jul 2011 10:32:00 +0000</pubDate><atom:updated>2011-07-31T05:09:44.274-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">DOM</category><category domain="http://www.blogger.com/atom/ns#">HTML5</category><category domain="http://www.blogger.com/atom/ns#">Javascript</category><title>Html 5 Intoduction</title><description>&lt;b&gt;What is HTML5?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
HTML5 is the new standard for &lt;code&gt;HTML&lt;/code&gt;, &lt;code&gt;XHTML&lt;/code&gt;, and the &lt;code&gt;HTML DOM&lt;/code&gt;. HTML5 is still a work in progress. However, most modern browsers have some HTML5 support.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;What are the new features of HTML5?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
New features of HTML5 are based on HTML, CSS, DOM and Javascript. There are some new features in HTML5;&lt;br /&gt;
&lt;br /&gt;
- The &lt;code&gt;&amp;lt;canvas&amp;gt;&lt;/code&gt; element for making graphics with Javascript.&lt;br /&gt;
- The &lt;code&gt;&amp;lt;audio&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;video&amp;gt;&lt;/code&gt; element for media streaming and playback.&lt;br /&gt;
- Better support for local storage like &lt;code&gt;localStorage&lt;/code&gt; and &lt;code&gt;sessionStorage&lt;/code&gt; using the Web Storage interface.&lt;br /&gt;
- New input types like &lt;code&gt;email&lt;/code&gt;, &lt;code&gt;url&lt;/code&gt;, &lt;code&gt;number&lt;/code&gt;, &lt;code&gt;range&lt;/code&gt; and &lt;code&gt;date&lt;/code&gt;.&lt;br /&gt;
- New form elements like &lt;code&gt;&amp;lt;datalist&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;keygen&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;output&amp;gt;&lt;/code&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Which browsers support HTML5?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
No browsers have full HTML5 support.But Safari, Chrome, Firefox, Opera and Internet Explorer continue to add new HTML5 features to their latest versions.</description><link>http://html5howto.blogspot.com/2011/07/html-5-intoduction.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item></channel></rss>