<?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: Semantic navigation with the nav element</title>
	<atom:link href="http://html5doctor.com/nav-element/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com/nav-element/</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Wed, 16 May 2012 21:31:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Julien Etienne</title>
		<link>http://html5doctor.com/nav-element/#comment-25429</link>
		<dc:creator>Julien Etienne</dc:creator>
		<pubDate>Tue, 08 May 2012 01:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-25429</guid>
		<description>Hmm, quite straight forward:

The idea of:
&lt;code&gt; &lt;/code&gt;

Is to say &quot;Hey this is the navigation of the website&quot; to (lets say) the robots.  

In regards to Bruce Lawson&#039;s comments about the nav not being allowed in the footer, I&#039;m kind of on both sides with that. 

I get that the footer isn&#039;t a counterpart of the header.  I guess there are so many typical scenarios of list being used in the footer that automatically most people would abuse the nav as an alternative for ul&#039;s &amp; ol&#039;s.

It seems like w3 are trying to &quot;prevent novice use&quot; in most cases.

As mentioned, there&#039;s no need to use  with  I would assume unless the nav serves as some kind of list content as well.</description>
		<content:encoded><![CDATA[<p>Hmm, quite straight forward:</p>
<p>The idea of:<br />
<code> </code></p>
<p>Is to say &#8220;Hey this is the navigation of the website&#8221; to (lets say) the robots.  </p>
<p>In regards to Bruce Lawson&#8217;s comments about the nav not being allowed in the footer, I&#8217;m kind of on both sides with that. </p>
<p>I get that the footer isn&#8217;t a counterpart of the header.  I guess there are so many typical scenarios of list being used in the footer that automatically most people would abuse the nav as an alternative for ul&#8217;s &amp; ol&#8217;s.</p>
<p>It seems like w3 are trying to &#8220;prevent novice use&#8221; in most cases.</p>
<p>As mentioned, there&#8217;s no need to use  with  I would assume unless the nav serves as some kind of list content as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://html5doctor.com/nav-element/#comment-25338</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 24 Apr 2012 13:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-25338</guid>
		<description>I&#039;m curious why you use
&lt;code&gt;&lt;nav&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;&#8230;&quot;&gt;Nav Link 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&#8230;&quot;&gt;Nav Link 2&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;&lt;/code&gt;

On my site, I much prefer the simpler
&lt;code&gt;&lt;nav&gt;
&lt;a href=&quot;&#8230;&quot;&gt;Nav Link 1&lt;/a&gt;
&lt;a href=&quot;&#8230;&quot;&gt;Nav Link 2&lt;/a&gt;
&lt;/nav&gt;&lt;/code&gt;

I for one hate sites that have a link within a tab but the link doesn&#039;t cover the whole tab. I much prefer having the entire tab be the link.</description>
		<content:encoded><![CDATA[<p>I&#8217;m curious why you use<br />
<code>&lt;nav&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href="&hellip;"&gt;Nav Link 1&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="&hellip;"&gt;Nav Link 2&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/nav&gt;</code></p>
<p>On my site, I much prefer the simpler<br />
<code>&lt;nav&gt;<br />
&lt;a href="&hellip;"&gt;Nav Link 1&lt;/a&gt;<br />
&lt;a href="&hellip;"&gt;Nav Link 2&lt;/a&gt;<br />
&lt;/nav&gt;</code></p>
<p>I for one hate sites that have a link within a tab but the link doesn&#8217;t cover the whole tab. I much prefer having the entire tab be the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bruce</title>
		<link>http://html5doctor.com/nav-element/#comment-24894</link>
		<dc:creator>bruce</dc:creator>
		<pubDate>Tue, 06 Mar 2012 15:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-24894</guid>
		<description>&quot;I don’t use any of the new semantic html5 elements for styling (structure) at all – that’s what div is for.&quot;

Any element may be used for styling - that&#039;s why you can hang CSS on p, video, ul, li etc rather than only div.

But you shouldn&#039;t add elements that don&#039;t need to be there just to hang styles off; in that case, use div.

Pragmatically, if you don&#039;t want to use the JavaScript shim for IE6 - 9, don&#039;t try to style the new semantic elements. But that&#039;s to cover an IE bug, not because styles should only go on divs.</description>
		<content:encoded><![CDATA[<p>&#8220;I don’t use any of the new semantic html5 elements for styling (structure) at all – that’s what div is for.&#8221;</p>
<p>Any element may be used for styling &#8211; that&#8217;s why you can hang CSS on p, video, ul, li etc rather than only div.</p>
<p>But you shouldn&#8217;t add elements that don&#8217;t need to be there just to hang styles off; in that case, use div.</p>
<p>Pragmatically, if you don&#8217;t want to use the JavaScript shim for IE6 &#8211; 9, don&#8217;t try to style the new semantic elements. But that&#8217;s to cover an IE bug, not because styles should only go on divs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Trow</title>
		<link>http://html5doctor.com/nav-element/#comment-24893</link>
		<dc:creator>Matthew Trow</dc:creator>
		<pubDate>Tue, 06 Mar 2012 14:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-24893</guid>
		<description>I&#039;ve ended up using nav very sparingly - only in primary &amp; secondary navigation (e.g. top nav and/or side nav) 

In fact, I don&#039;t even use it for styling - it&#039;s purely there for screen readers in my code.

&lt;code&gt;
    &lt;nav&gt;
        &lt;ul id=&quot;primary&quot;&gt;
             &lt;li&gt; ...
        &lt;/ul&gt;
    &lt;/nav&gt;
&lt;/code&gt;

In fact, I don&#039;t use any of the new semantic html5 elements for styling (structure) at all - that&#039;s what div is for.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve ended up using nav very sparingly &#8211; only in primary &amp; secondary navigation (e.g. top nav and/or side nav) </p>
<p>In fact, I don&#8217;t even use it for styling &#8211; it&#8217;s purely there for screen readers in my code.</p>
<p><code><br />
    &lt;nav&gt;<br />
        &lt;ul id="primary"&gt;<br />
             &lt;li&gt; ...<br />
        &lt;/ul&gt;<br />
    &lt;/nav&gt;<br />
</code></p>
<p>In fact, I don&#8217;t use any of the new semantic html5 elements for styling (structure) at all &#8211; that&#8217;s what div is for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carbonize</title>
		<link>http://html5doctor.com/nav-element/#comment-21051</link>
		<dc:creator>Carbonize</dc:creator>
		<pubDate>Fri, 23 Dec 2011 17:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-21051</guid>
		<description>Slightly off topic but given that you are using HTML 5 on this fsite such as the doctype and nav element why are you still using the type attribute for the style and script tags? Neither of these is necessary in HTML 5 as the browser will treat them as CSS and JavaScript by default.</description>
		<content:encoded><![CDATA[<p>Slightly off topic but given that you are using HTML 5 on this fsite such as the doctype and nav element why are you still using the type attribute for the style and script tags? Neither of these is necessary in HTML 5 as the browser will treat them as CSS and JavaScript by default.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mandy</title>
		<link>http://html5doctor.com/nav-element/#comment-18399</link>
		<dc:creator>mandy</dc:creator>
		<pubDate>Wed, 09 Nov 2011 23:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-18399</guid>
		<description>I had the same question regarding breadcrumbs as koder above, but I liked his second option so I&#039;m going to use that.</description>
		<content:encoded><![CDATA[<p>I had the same question regarding breadcrumbs as koder above, but I liked his second option so I&#8217;m going to use that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toke Voltelen</title>
		<link>http://html5doctor.com/nav-element/#comment-18394</link>
		<dc:creator>Toke Voltelen</dc:creator>
		<pubDate>Wed, 09 Nov 2011 16:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-18394</guid>
		<description>Well. The issue about having the &lt;nav&gt; element being an actual list, is that, in it&#039;s current state it is an area wherein navigational items are placed. No where is it said that the links needs to be in a list, but most developers do this for presentational reasons when there is no styles + accessibility.

I don&#039;t mind that the &lt;nav&gt; is an area-tag rather than a list-tag, as it makes sense to mark up an area that is related for navigation. But the definition of how to use the tag pretty vague. I don&#039;t understand why and bunch of links to key pages in a website in the footer, is less a navigation than the main menu in the header. It is still navigation to important places on the website.

In my oppinion the &lt;nav&gt; should be used for areas that allow the user navigate the site. Clusters of internal links along with descriptive texts and headers. Breadcrumb being an excellent example, as well as the footer links.</description>
		<content:encoded><![CDATA[<p>Well. The issue about having the &lt;nav&gt; element being an actual list, is that, in it&#8217;s current state it is an area wherein navigational items are placed. No where is it said that the links needs to be in a list, but most developers do this for presentational reasons when there is no styles + accessibility.</p>
<p>I don&#8217;t mind that the &lt;nav&gt; is an area-tag rather than a list-tag, as it makes sense to mark up an area that is related for navigation. But the definition of how to use the tag pretty vague. I don&#8217;t understand why and bunch of links to key pages in a website in the footer, is less a navigation than the main menu in the header. It is still navigation to important places on the website.</p>
<p>In my oppinion the &lt;nav&gt; should be used for areas that allow the user navigate the site. Clusters of internal links along with descriptive texts and headers. Breadcrumb being an excellent example, as well as the footer links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hanamiti</title>
		<link>http://html5doctor.com/nav-element/#comment-18275</link>
		<dc:creator>Hanamiti</dc:creator>
		<pubDate>Tue, 01 Nov 2011 12:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-18275</guid>
		<description>Man, thank you for the explanatory article :) I am slowly migrating from XHTML to HTML5 markup, and you were of real help! Cudos.</description>
		<content:encoded><![CDATA[<p>Man, thank you for the explanatory article :) I am slowly migrating from XHTML to HTML5 markup, and you were of real help! Cudos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandy Campbell</title>
		<link>http://html5doctor.com/nav-element/#comment-17817</link>
		<dc:creator>Sandy Campbell</dc:creator>
		<pubDate>Thu, 29 Sep 2011 03:03:06 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-17817</guid>
		<description>Sorry, I didn&#039;t see the note about using brackets, so all my tags were stripped from my previous comment:

When I Googled “nav vs menu”, I didn’t realize how contentious an issue this is! But I actually prefer &#039;menu&#039; over &#039;nav&#039; because the markup for &#039;menu&#039; is simpler. The &#039;nav&#039; tag requires that your list items are wrapped with &#039;ul&#039;. It’s no different than using a &#039;div&#039; tag. But the &#039;menu&#039; tag accepts list items without needing a &#039;ul&#039; wrapper. In essence, &#039;menu&#039; replaces &#039;ul&#039; when you want to make a navigational list. It verifies and displays correctly as a list when CSS is disabled. Whatever styles you have now for &#039;ul&#039; will work for &#039;menu&#039;.</description>
		<content:encoded><![CDATA[<p>Sorry, I didn&#8217;t see the note about using brackets, so all my tags were stripped from my previous comment:</p>
<p>When I Googled “nav vs menu”, I didn’t realize how contentious an issue this is! But I actually prefer &#8216;menu&#8217; over &#8216;nav&#8217; because the markup for &#8216;menu&#8217; is simpler. The &#8216;nav&#8217; tag requires that your list items are wrapped with &#8216;ul&#8217;. It’s no different than using a &#8216;div&#8217; tag. But the &#8216;menu&#8217; tag accepts list items without needing a &#8216;ul&#8217; wrapper. In essence, &#8216;menu&#8217; replaces &#8216;ul&#8217; when you want to make a navigational list. It verifies and displays correctly as a list when CSS is disabled. Whatever styles you have now for &#8216;ul&#8217; will work for &#8216;menu&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandy Campbell</title>
		<link>http://html5doctor.com/nav-element/#comment-17816</link>
		<dc:creator>Sandy Campbell</dc:creator>
		<pubDate>Thu, 29 Sep 2011 02:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=473#comment-17816</guid>
		<description>When I Googled &quot;nav vs menu&quot;, I didn&#039;t realize how contentious an issue this is! But I actually prefer  over  because the markup for  is simpler. The  tag requires that your  list items are wrapped with . It&#039;s no different than using a  tag. But the  tag accepts  list items without needing a  wrapper. In essence,  replaces  when you want to make a navigational list. It verifies and displays correctly as a list when CSS is disabled. Whatever styles you have now for  will work for .</description>
		<content:encoded><![CDATA[<p>When I Googled &#8220;nav vs menu&#8221;, I didn&#8217;t realize how contentious an issue this is! But I actually prefer  over  because the markup for  is simpler. The  tag requires that your  list items are wrapped with . It&#8217;s no different than using a  tag. But the  tag accepts  list items without needing a  wrapper. In essence,  replaces  when you want to make a navigational list. It verifies and displays correctly as a list when CSS is disabled. Whatever styles you have now for  will work for .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

