<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: The Footer Element Update</title>
	<atom:link href="http://html5doctor.com/the-footer-element-update/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com/the-footer-element-update/</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:44:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Richard Clark</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-20894</link>
		<dc:creator>Richard Clark</dc:creator>
		<pubDate>Mon, 19 Dec 2011 20:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-20894</guid>
		<description>@Nate, this article was written before our redesign, so it&#039;s a little out of date in that respect I&#039;m afraid.</description>
		<content:encoded><![CDATA[<p>@Nate, this article was written before our redesign, so it&#8217;s a little out of date in that respect I&#8217;m afraid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nate</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-20879</link>
		<dc:creator>nate</dc:creator>
		<pubDate>Mon, 19 Dec 2011 15:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-20879</guid>
		<description>&quot;To see an example of the &lt;footer&gt; within an article/section look no further than this very page. Scroll down beyond the article and you will notice the light grey text section, which falls directly after the &quot;further reading&quot;. This grey text section which gives information about trackbacks, responses, tags and categories is infact using the footer element. &quot;

Isn&#039;t that section actually in an aside tag?  I just looked at the source and am now a bit confused.  Your constant footer is inside the footer tag.</description>
		<content:encoded><![CDATA[<p>&quot;To see an example of the &lt;footer&gt; within an article/section look no further than this very page. Scroll down beyond the article and you will notice the light grey text section, which falls directly after the &quot;further reading&quot;. This grey text section which gives information about trackbacks, responses, tags and categories is infact using the footer element. &quot;</p>
<p>Isn&#8217;t that section actually in an aside tag?  I just looked at the source and am now a bit confused.  Your constant footer is inside the footer tag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alohci</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-17683</link>
		<dc:creator>Alohci</dc:creator>
		<pubDate>Tue, 20 Sep 2011 17:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-17683</guid>
		<description>@Josué - You can have as many footers as you like in a section. 

You can also have sections inside footers, but such a section cannot then have a footer.  Which doesn&#039;t make a lot of sense to me semantically, but those are the rules.</description>
		<content:encoded><![CDATA[<p>@Josué &#8211; You can have as many footers as you like in a section. </p>
<p>You can also have sections inside footers, but such a section cannot then have a footer.  Which doesn&#8217;t make a lot of sense to me semantically, but those are the rules.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josué Saúl Martín Hernández</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-17676</link>
		<dc:creator>Josué Saúl Martín Hernández</dc:creator>
		<pubDate>Tue, 20 Sep 2011 14:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-17676</guid>
		<description>@tom I guess you can&#039;t use two footers in the same section, you only can:
&lt;code&gt;
&lt;div id=&quot;section1&quot;&gt;
  content 2
  &lt;footer&gt;The Footer 2&lt;/footer&gt;
&lt;/div&gt;
&lt;div id=&quot;section2&quot;&gt;
  content 2
  &lt;footer&gt;The Footer 2&lt;/footer&gt;
&lt;/div&gt;
&lt;/code&gt;
So you identify them as (CSS):
&lt;code&gt;
#section1 footer{....}
#section2 footer{....}
&lt;/code&gt;
Am I right Doctor? Are this elements yet controlable trough javascript &amp; DOM too?</description>
		<content:encoded><![CDATA[<p>@tom I guess you can&#8217;t use two footers in the same section, you only can:<br />
<code><br />
&lt;div id="section1"&gt;<br />
  content 2<br />
  &lt;footer&gt;The Footer 2&lt;/footer&gt;<br />
&lt;/div&gt;<br />
&lt;div id="section2"&gt;<br />
  content 2<br />
  &lt;footer&gt;The Footer 2&lt;/footer&gt;<br />
&lt;/div&gt;<br />
</code><br />
So you identify them as (CSS):<br />
<code><br />
#section1 footer{....}<br />
#section2 footer{....}<br />
</code><br />
Am I right Doctor? Are this elements yet controlable trough javascript &amp; DOM too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using HTML5 elements with jQuery Mobile - operationmobile.com</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-17524</link>
		<dc:creator>Using HTML5 elements with jQuery Mobile - operationmobile.com</dc:creator>
		<pubDate>Thu, 08 Sep 2011 20:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-17524</guid>
		<description>[...] I find odd is that while the DOCTYPE is declared the HTML5 way, divs are used instead of header and footer elements.Here’s an example taken straight from the docs and the jsFiddle page showing it [...]</description>
		<content:encoded><![CDATA[<p>[...] I find odd is that while the DOCTYPE is declared the HTML5 way, divs are used instead of header and footer elements.Here’s an example taken straight from the docs and the jsFiddle page showing it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HTML5でブログを書くのです。(2) -複数のheader- &#124; html5ですブログ</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-14845</link>
		<dc:creator>HTML5でブログを書くのです。(2) -複数のheader- &#124; html5ですブログ</dc:creator>
		<pubDate>Thu, 14 Apr 2011 01:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-14845</guid>
		<description>[...] HTML5 Doctor曰く An important point to note is that you are not restricted to use one &lt;footer&gt; element per site, you can use multiple footers, each of which will then become the &lt;footer&gt; for that section of the document. You could therefore have a &lt;footer&gt; for a &lt;section&gt; or an &lt;article&gt; [...]</description>
		<content:encoded><![CDATA[<p>[...] HTML5 Doctor曰く An important point to note is that you are not restricted to use one &lt;footer&gt; element per site, you can use multiple footers, each of which will then become the &lt;footer&gt; for that section of the document. You could therefore have a &lt;footer&gt; for a &lt;section&gt; or an &lt;article&gt; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 3 Roads Media</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-14515</link>
		<dc:creator>3 Roads Media</dc:creator>
		<pubDate>Tue, 01 Mar 2011 23:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-14515</guid>
		<description>Is it acceptable to use &lt;code&gt; footer &lt;/code&gt; within an &lt;code&gt; aside &lt;/code&gt; element?</description>
		<content:encoded><![CDATA[<p>Is it acceptable to use &lt;code&gt; footer &lt;/code&gt; within an &lt;code&gt; aside &lt;/code&gt; element?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-13945</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Wed, 19 Jan 2011 12:58:06 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-13945</guid>
		<description>So we have couple footers at some page and one of them is the main footer.
So should we just name the main footer like:

&lt;code&gt;&lt;footer id=&quot;footer&quot;&gt;&lt;/code&gt;

?</description>
		<content:encoded><![CDATA[<p>So we have couple footers at some page and one of them is the main footer.<br />
So should we just name the main footer like:</p>
<p><code>&lt;footer id="footer"&gt;</code></p>
<p>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imprezy okoliczno&#347;ciowe &#322;&#243;d&#378;</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-12928</link>
		<dc:creator>imprezy okoliczno&#347;ciowe &#322;&#243;d&#378;</dc:creator>
		<pubDate>Fri, 17 Dec 2010 12:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-12928</guid>
		<description>I read about it daysago in another article and the main points that you   divulge here are very similar.</description>
		<content:encoded><![CDATA[<p>I read about it daysago in another article and the main points that you   divulge here are very similar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L&#8217;élément footer &#124; Docteur HTML5</title>
		<link>http://html5doctor.com/the-footer-element-update/#comment-10106</link>
		<dc:creator>L&#8217;élément footer &#124; Docteur HTML5</dc:creator>
		<pubDate>Sat, 14 Aug 2010 11:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=895#comment-10106</guid>
		<description>[...] Liens vers l&#8217;article Mise à jour : Élément footer en anglais [...]</description>
		<content:encoded><![CDATA[<p>[...] Liens vers l&#8217;article Mise à jour : Élément footer en anglais [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

