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 hope this is the right place to ask this. If not could any of you please tell me where I might get an answer to this question please. I have search everywhere and find nothing.

I'm helping a friend with a site and she is use XSitePro blogging software. XSP does not allow you to edit the tag but we need to add the FB Namespace to her pages.

Is there any way to add this if the html tag can't be changed?

Thanks, Terry

share|improve this question
There's a few different methods for a Like button. HTML5, XFBML, IFrame, etc. I think only the XFBML method requires a new namespace. Maybe you can try one of the others? – Mike Christensen Oct 8 '12 at 16:14
The tag that AddThis, which is why we need to add the NS, is: xmlns:fb="ogp.me/ns/fb#"; The problem is how to get the NS to work if it can't be added to the <html> tag> Is there a way to do it with a div element? Like this: <div xmlns:fb="ogp.me/ns/fb#">; AddThis Code... </div> – Terry Oct 8 '12 at 16:34
Can you try something like: document.documentElement.setAttribute("xmlns:fb", "http://www.facebook.com/2008/fbml"); – Mike Christensen Oct 8 '12 at 16:45
Thanks Mike. The setAttribute worked. I can't thank you enough. – Terry Oct 8 '12 at 17:05
I'll add it as an answer as well.. – Mike Christensen Oct 8 '12 at 17:06

1 Answer

You can add the namespace to the document through script. Something like:

document.documentElement.setAttribute("xmlns:fb", "http://www.facebook.com/2008/fbml");
share|improve this answer

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.