Issues with the Facebook login button disappearing in Internet Explorer 9 after page refresh. All other browsers are functioning correctly, but IE only displays the button initially and then it disappears on any subsequent refresh.
Utilizing Facebook connect with the following code snippet:
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: '193048084076885', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol +
'//connect.facebook.net/tr_TR/all.js';
e.async = true;
document.getElementById("fb-root").appendChild(e);
}());
</script>
And including the fb button:
<fb:login-button v="2" size="medium" length="long" perms="email, user_about_me, user_birthday, user_education_history, user_hometown, user_interests, user_location, user_photos"></fb:login-button>
If you have any suggestions for a workaround, that would be greatly appreciated. Thank you.