i am running this example from facebook registration plugin but it does not work and does not throw any error as well.
https://developers.facebook.com/docs/guides/web/
<fb:registration redirect-uri="https://developers.facebook.com/tools/echo"
fields='[{"name":"name"},
{"name":"username","description":"Username","type":"text"}]'
onvalidate="validate_async"></fb:registration>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
function validate_async(form, cb) {
$.getJSON('https://graph.facebook.com/' + form.username + '?callback=?',
function(response) {
if (response.error) {
// Username isn't taken, let the form submit
cb();
}
cb({username: 'That username is taken'});
});
}
</script>