I'm trying to create a custom validation on the Facebook registration plugin fields. But as soon as I add a custom field, the form just never be posted and the validate function is never called. Here is a simplified piece of code where address is the custom field :
<fb:registration
redirect-uri="https://socialike.eu/clientsiframes/essentiel/form/"
onvalidate="validate"
fields="[
{'name':'name'},
{'name':'email'},
{'name':'address','description':'Address','type':'text'},
{'name':'location'}
]">
</fb:registration>
<script>
function validate(form){
var errors={};
errors.address = "ERROR";
return errors;
}
</script>