Я думаю, что могу делать что-то не так. Пользователи, которые пытаются зарегистрироваться в Internet Explorer, говорят, что плагин facebook пропадает при попытке отправить его. Есть идеи?
Это часть кода:
<fb:registration redirect-uri="http://friendsconnect.org/----.php"
fields='[{"name":"name"},{"name":"first_name"},{"name":"last_name"},{"name":"email"},{"name":"username","description":"Username","type":"text"},{"name":"password"},{"name":"gender"},{"name":"birthday"},{"name":"captcha"},]'
onvalidate="validate"></fb:registration>
<script>
function validate(form) {
errors = {};
if (form.name == "") {
errors.name = "Please enter your name.";
}
if (form.username == "") {
errors.username = "Please enter your username.";
}
if (form.email == "") {
errors.email = "Please enter your email address.";
}
if (form.password == "") {
errors.password = "Please enter your password.";
}
if (form.gender == "") {
errors.gender = "Please enter your sex.";
}
if (form.birthday == "") {
errors.birthday = "Please enter your birthday.";
}
if (form.captcha == "") {
errors.captcha = "Try and enter the text in the box below.";
}
return errors;
}
</script>