Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i use the facebook and twitter plugins in my html 4.01 strict doctype,which give me the following error.

Error Line 166, Column 23: there is no attribute "HREF"
Line 166, Column 107: there is no attribute "SHOW_FACES"

please help me how i removed these validation error's from my html page. i use the following doctype and code

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

facebook code

 <fb:like-box href="http://www.facebook.com/pages/mysite/45662125588" width="692" show_faces="true" stream="true" header="true"></fb:like-box>

please help me if you have any suggestion

share|improve this question

1 Answer

Try this:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="http://www.facebook.com/2008/fbml"
      xmlns:google="http://base.google.com/ns/1.0"
      xmlns:twitter="http://api.twitter.com/">

Then if that doesn't work, change the DOC type to something like this

<!DOCTYPE html PUBLIC 
      "-//W3C//DTD XHTML+RDFa 1.0//EN" 
      "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.