Facebook Connect and HTML5, xmlns available? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:33:05Z http://stackoverflow.com/feeds/question/1081571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081571/facebook-connect-and-html5-xmlns-available 0 Facebook Connect and HTML5, xmlns available? anonymous coward 2009-07-04T05:20:13Z 2009-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>&lt;html&gt;</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&amp;story=198" rel="nofollow">http://developers.facebook.com/news.php?blog=1&amp;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 -1 Answer by David Dorward for Facebook Connect and HTML5, xmlns available? David Dorward 2009-07-04T07:04:09Z 2009-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#1083997 1 Answer by Alohci for Facebook Connect and HTML5, xmlns available? Alohci 2009-07-05T12:42:51Z 2009-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>