Facebook Connect and HTML5, xmlns available? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:33:05Zhttp://stackoverflow.com/feeds/question/1081571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081571/facebook-connect-and-html5-xmlns-available0Facebook Connect and HTML5, xmlns available?anonymous coward2009-07-04T05:20:13Z2009-07-05T12:42:51Z
<p>Facebook Connect and their "Social Widgets" documentation mention that you need to add an <code>xmlns</code> attribute to your <code><html></code> tag on the page where it will be used. </p>
<p>I understand that <code>xmlns</code> is for XML Name-spacing, and have used such with XHTML before. However, with all the recent talk about HTML4 / HTML5, without having read through the entire spec, <strong>is the <code>xmlns</code> attribute compatible with valid HTML5? What about HTML4?</strong></p>
<p>If I've looked over an obvious mention of this in the docs, I'm sorry... point it out?</p>
<p>EDIT:
A couple docs references/cites:
<a href="http://developers.facebook.com/news.php?blog=1&story=198" rel="nofollow">http://developers.facebook.com/news.php?blog=1&story=198</a>
<a href="http://wiki.developers.facebook.com/index.php/Facebook_Connect" rel="nofollow">http://wiki.developers.facebook.com/index.php/Facebook_Connect</a></p>
http://stackoverflow.com/questions/1081571/facebook-connect-and-html5-xmlns-available/1081704#1081704-1Answer by David Dorward for Facebook Connect and HTML5, xmlns available?David Dorward2009-07-04T07:04:09Z2009-07-04T07:04:09Z<blockquote>
<p>is the xmlns property </p>
</blockquote>
<p>It's an attribute.</p>
<blockquote>
<p>compatible with valid HTML5?</p>
</blockquote>
<p>Sort of. It is completely meaningless, but allowed so people can be <a href="http://dev.w3.org/html5/spec/Overview.html#global-attributes" rel="nofollow">lazy when porting XHTML</a>. </p>
<p>Remember that HTML 5 is an unfinished draft. These things are subject to change. Don't rush into using HTML 5 unless it offers a serious benefit.</p>
<blockquote>
<p>What about HTML4?</p>
</blockquote>
<p>Not at all.</p>
http://stackoverflow.com/questions/1081571/facebook-connect-and-html5-xmlns-available/1083997#10839971Answer by Alohci for Facebook Connect and HTML5, xmlns available?Alohci2009-07-05T12:42:51Z2009-07-05T12:42:51Z<p>Actually, the first cited reference discusses adding a xmlns:fb="http://www.facebook.com/2008/fbml" attribute. This is not valid HTML5. It is valid XHTML5. The second cited reference does not mention an xmlns attribute at all. </p>
<p>Note though, that although it is not valid HTML4 or HTML5, it will do no harm.</p>