<?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>TipsInBox &#187; Web</title>
	<atom:link href="http://www.didiergalland.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.didiergalland.com</link>
	<description>Hints and tips of a web worker</description>
	<lastBuildDate>Wed, 04 Jan 2012 00:35:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Forms with HTML5</title>
		<link>http://www.didiergalland.com/2010/01/06/forms-with-html5/</link>
		<comments>http://www.didiergalland.com/2010/01/06/forms-with-html5/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 22:58:57 +0000</pubDate>
		<dc:creator>didier</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.didiergalland.com/2010/01/06/forms-with-html5/</guid>
		<description><![CDATA[A Form of Madness &#8211; Dive Into HTML5 Doctype : for HTML 5 : &#8220;&#60;!DOCTYPE html&#62;&#8221;.  (case-insensitive) Placeholder safari + chrome only &#60;input name="q" placeholder="Type your query here"&#62; Autofocus saf + chrome + opera (fallback) &#60;input name="q" autofocus&#62; Email and web addresses &#8220;Browsers (even ie6!) that don’t recognize type=&#8221;email&#8221; will treat it as type=&#8221;text&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://diveintohtml5.org/forms.html">A Form of Madness &#8211; Dive Into HTML5</a></p>
<p>Doctype : for HTML 5 : &#8220;&lt;!DOCTYPE html&gt;&#8221;.  (case-insensitive)</p>
<h2>Placeholder</h2>
<p>safari + chrome only</p>
<pre>&lt;input name="q" placeholder="Type your query here"&gt;</pre>
<h2>Autofocus</h2>
<p>saf + chrome + opera (<a href="#fallback-autofocus">fallback</a>)</p>
<pre>&lt;input name="q" autofocus&gt;</pre>
<h2>Email and web addresses</h2>
<p>&#8220;Browsers (even ie6!) that don’t recognize type=&#8221;email&#8221; will treat it as type=&#8221;text&#8221; and render it as a plain text field.&#8221; Iphone will adapt it&#8217;s virtual keyboard (no space, @&#8230;)</p>
<pre>&lt;input type="email"&gt;
&lt;input type="url"&gt;</pre>
<h2>Number as spinboxes</h2>
<p>Rendering depends on browser (iPhone optimizes the virtual keyboard for numeric input, opera renders as a spinbox control&#8230;). The browsers that don&#8217;t support type=&#8221;number&#8221; will render it as plain text field.</p>
<pre>&lt;input type="number" min="0" max="10" step="2" value="6"&gt;</pre>
<p>Javascript methods available in HTML5 :</p>
<ul>
<li><code>input.stepUp(n)</code> increases the field’s value by <code>n</code>.</li>
<li><code>input.stepDown(n)</code> decreases the field’s value by <code>n</code>.</li>
<li><code>input.valueAsNumber</code> returns the current value as a floating point number. (The <code>input.value</code> property is always a string.)</li>
</ul>
<h2>Numbers as sliders</h2>
<pre>&lt;input type="range" min="0" max="10" step="2" value="6"&gt;</pre>
<h2>Date picker</h2>
<p>Supported only by opera, rendered as plain text boxes in browsers that don&#8217;t support.</p>
<pre>&lt;input type="date" /&gt;
&lt;input type="datetime"/&gt;
&lt;input type="month" /&gt; (month + year)
&lt;input type="week"/&gt;
&lt;input type="time"/&gt;</pre>
<h2>Search boxes</h2>
<pre>&lt;input name="q" type="search"&gt;</pre>
<h2>Color picker</h2>
<p>No browser supports it yet.</p>
<pre>&lt;input type="color"&gt;</pre>
<hr /><a name="fallback-autofocus"><br />
</a><br />
<a name="fallback-autofocus"></a></p>
<h2>Fallback code example for autofocus (jquery)</h2>
<pre>$(document).ready(function() {
  if (!("autofocus" in document.createElement("input"))) {
      $("#q").focus();
  }
});</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.didiergalland.com%2F2010%2F01%2F06%2Fforms-with-html5%2F&amp;title=Forms%20with%20HTML5" id="wpa2a_2"><img src="http://www.didiergalland.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.didiergalland.com/2010/01/06/forms-with-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Trend map by IA jp</title>
		<link>http://www.didiergalland.com/2009/09/13/web-trend-map-by-ia-jp/</link>
		<comments>http://www.didiergalland.com/2009/09/13/web-trend-map-by-ia-jp/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 01:02:29 +0000</pubDate>
		<dc:creator>didier</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[web culture]]></category>

		<guid isPermaLink="false">http://www.didiergalland.com/?p=71</guid>
		<description><![CDATA[Informationarchitects.jp presents the 200 most successful websites ordered in a mindmap onto the Tokyo Metro map. The websites are ordered by category (lines), proximity, success (big stack), etc. It offers a wide and significant view of the 2008&#8242;s web. I ordered the printed (A0) version today ($70 including shipping). Image (6740 x 4768) : http://informationarchitects.jp/wp-content/uploads/2009/07/wtm4-final.png [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.informationarchitects.jp/">Informationarchitects.jp</a> presents the <a href="http://informationarchitects.jp/wtm4/" target="_blank">200 most successful websites ordered in a mindmap</a> onto the Tokyo Metro map. The websites are ordered by category (lines), proximity, success (big stack), etc. It offers a wide and significant view of the 2008&#8242;s web.</p>
<p>I ordered the printed (A0) version today ($70 including shipping).</p>
<p>Image (6740 x 4768) : <a href="http://informationarchitects.jp/wp-content/uploads/2009/07/wtm4-final.png" target="_blank">http://informationarchitects.jp/wp-content/uploads/2009/07/wtm4-final.png</a> and a <a href="http://www.didiergalland.com/extrafiles/wtm4-final.png" target="_blank">local copy</a> (just in case).</p>
<p>Interactive version (good idea for browser home page) : <a href="http://webtrendmap.com/" target="_blank">http://webtrendmap.com/</a></p>
<p>Zoom-able and draggable unofficial version : <a href="http://webtrendmap.com/" target="_blank">http://openzoom.org/webtrendmap/</a></p>
<p><a href="http://webtrendmap.com/" target="_blank"></a><a href="http://www.didiergalland.com/wp-content/uploads/2009/09/wtm4.jpg"><img class="alignleft size-full wp-image-83" title="wtm4" src="http://www.didiergalland.com/wp-content/uploads/2009/09/wtm4.jpg" alt="wtm4" width="500" height="354" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.didiergalland.com%2F2009%2F09%2F13%2Fweb-trend-map-by-ia-jp%2F&amp;title=Web%20Trend%20map%20by%20IA%20jp" id="wpa2a_4"><img src="http://www.didiergalland.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.didiergalland.com/2009/09/13/web-trend-map-by-ia-jp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

