Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i can't get this working on Internet Explorer. I do have a simple button called 'show comments' on a php page. In case of the user clicks on it, it should open the div with the facebook comments in it. Simple as that. It works fine in all browsers except for internet explorer. i use the same javascript on the same page to hide or unhide divs with text content which work fine.

this is a resumé of my code.

:: javascript to hide or unhide the div ::

<script type="text/javascript">
 function unhide(divID) {
 var item = document.getElementById(divID);
 if (item) {
 item.className=(item.className=='hidden')?'unhidden':'hidden';
 }
 }
 </script>

:: the div with my codes and button in it :: ( i replaced the domain by 'domain' just in this explample here - the same for the api key)

<div id=\"social_activity\"><div id=\"fb-root\"></div><script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'apid', // App ID
      channelUrl : '//domain/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      oauth      : true, // enable OAuth 2.0
      xfbml      : true  // parse XFBML
    });
  };
(function(d, s, id) {
  var js, fjs = document.getElementsByTagName(s)[0];
  if (document.getElementById(id)) return;
  js = document.createElement(s); js.id = id;
  js.src = '//connect.facebook.net/en_US/all.js#xfbml=1&appId=apid';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id=\"likebox\"><fb:like href=\"http://www.domain.be/activity.php?id=".$cobj->id_."&    lng=".$GLOBALS["lng"]."\" xid=\"".$cobj->id_."\" show_faces=\"false\" width=\"470\" action=\"recommend\" font=\"\" colorscheme=\"light\"></fb:like></div>";
<div id=\"commentsbutton\"><a href=\"javascript:unhide('commentsbox');\">Show comments</a>    </div><div id=\"commentsbox\" class=\"hidden\"><fb:comments href=\"http://www.domain.be/activity.php?id=".$cobj->id_."&lng=".$GLOBALS["lng"]."\" url=\"http://www.bozar.be/activity.php?id=".$cobj->id_."&lng=".$GLOBALS["lng"]."\" width=\"460px\" num_posts=\"5\" migrated=\"1\"></fb:comments></div></div>

when i put the 'div id=commentsbox class=unhidden' comments get loaded without a problem.

this is my css related

#commentsbox{
clear:both;
}

#likebox{
clear:both;
}

#commentsbutton{
background-color:#DEE3EC;
padding:4px;
margin-top:5px;
margin-bottom:40px;
float:right;
border:#CCCCCC thin solid;
}
#commentsbutton a{
color:#3B5998;
}

#social_activity {
border:#CCCCCC dotted thin;
/*border-top:#CCCCCC dotted thin;*/
padding:5px;
clear:both;
margin-top:20px;
margin-bottom:10px;
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.