My code :
Render me $(\'#render-me\').click
You have to specify a node already in DOM. So, you can't use:
FB.XFBML.parse(document.getElementById('button-facebook'));
use instead:
FB.XFBML.parse(document.getElementById('social-facebook'));
and it will work fine ;)