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'm using free site build&host, it provides HTML editing with some codes like $TITLE$, $HOME_PAGE-LINK$ and others, but doesn't provide code for getting current http address. Facebook comments box requires http address, and only way for setting it is JavaScript. But how do it? Comments box uses first after-load value and changing it via attribute setting in JS doesn't working.

Maybe you can help?

UPDATE: I'm using html5 box, not xfbml.

UPDATE2: You can see site in work there - armanx64.tk, but it on Russian only.

share|improve this question

closed as too localized by Jimmy Sawczuk, Palash Mondal, Rory McCrossan, Björn Kaiser, Juhana Jan 3 at 11:55

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

If you have access to the Facebook JavaScript SDK, you'll be able to use this function -

FB.XFBML.parse();

Quoting the documentation,

This function parses and renders XFBML markup in a document on the fly.

All you'll have to do is load the JavaScript SDK and once you change the href property, call FB.XFBML.parse();. It will re-render the elements.

share|improve this answer
Strange, total FB.XFBML.parse() works, but FB.XFBML.parse(document.getElementById('fbcomments')); - not. – Arman Stepanyan Jan 2 at 20:33
up vote 1 down vote accepted

Problem solved. I used this code in html:

<div class="fb-comments" id="fbcomments" width="800pt" data-href="" data-num-posts="10" data-colorscheme="dark"></div><script>initfbcm();</script>

where initfbcm() sets data-href. If you do it quickly, after init of comments block, data-href will be settled normally, without FB.XFBML.parse(), which can cause some problems after initfbcm() call.

share|improve this answer

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