I'm building a Joomla website (here, still under construction) and I'm adding in facebook support. I've downloaded and installed the Joomla Facebook SDK, and now I'm trying to add login and registration with Facebook.
I made a Custom HTML module in the top-a position, and dropped in the following code:
<div id="fb-root"></div>
<script src="https://connect.facebook.net/en_US/all.js#appId=MY_APP_ID&xfbml=1" type="text/javascript"></script>
<fb:login-button registration-url="https://REGISTRATION_URL"></fb:login-button>
where the registration url points to a page with the registration button on it (is that right?)
The Login button appears with the word "Login" but does not respond to clicks. The Chrome console doesn't register any errors, and neither does Firebug.
This may be a very simple problem since I'm relatively new to this kind of coding, and not very comfortable with javascript.