I am using Facebook Developer Toolkit 3.1 beta. I am adding the facebook connect button to my page using FeatureLoader.js.php. The button was showing and everything worked fine till yesterday. All of a sudden the button is not showing in IE. Its working fine in Firefox and Chrome. In IE, I am getting an error saying that "Object doesn't support this property or method" for FeatureLoader.js.php.
This is how I am adding the facebook login button in my page. Please help.
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
</head>
<body>
<form id="form1" runat="server">
<div runat="server" id="AuthenticationSection">
<fb:login-button onlogin="window.location.reload()"></fb:login-button>
</div>
</form>
</body>
<script type="text/javascript">
FB.init("XXXXXXXXXX","xd_receiver.htm");
</script>
</html>
Thanks, Pia