I'm using the registration plugin of facebook to manage registration of some site. It works in all browsers except in IE7/8.
In IE8, it gives some javascript error like
'tagName' is null or not an object zRlOgpwX8LW.js, line 31 character 492.
You can see below the whole html code of the page. So far the only thing i manage to figure out is that the presence of "onvalidate" attribute generates the error. If i remove it, everything works just fine.
Did anyone else encountered this? How did you manage to fix it?
Thanks
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script type="text/javascript" src="/js/jquery/jquery-1.4.2.min.js"></script>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.init({
"appId": '<< my app id >>',
"cookie": true,
"xfbml": true
});
function check_username(form, cb) {
$.getJSON('http://mysite/checkUsername?username=' + form.username+'&callback=?',
function(response) {
if (response.message == "ok") {
cb();
}
cb({'username': response.message});
}
)
}
</script>
<fb:registration redirect-uri="http://mysite/facebook-register-done?redirect="
fields='[{"name":"name"},
{"name":"first_name"},
{"name":"last_name"},
{"name":"email"},
{"name":"location"},
{"name":"birthday"},
{"name":"username","description":"Username","type":"text"}]'
onvalidate="check_username"></fb:registration>
</body>
</html>
zRlOgpwX8LW.js) to analyze it. – scheffield Mar 23 '11 at 12:22