javascript - Facebook Like button is not visible on page -


i trying add facebook count on website page. however, not able see it. when inspect element, can see facebook div has loaded without errors.

below snippet using:

<!doctype html> <html lang="en">     <head>     <link href="css/test_like.css" rel="stylesheet">     <title>test page</title></head>     <body>      <div id="fb-root"></div>     <script type="text/javascript">(function(d, s, id) {       var js, fjs = d.getelementsbytagname(s)[0];       if (d.getelementbyid(id)) return;       js = d.createelement(s); js.id = id;       js.src = "https://connect.facebook.net/en_gb/sdk.js#xfbml=1&version=v2.7&appid=myappid";       fjs.parentnode.insertbefore(js, fjs);     }(document, 'script', 'facebook-jssdk'));</script>  <div class="div">   <div class="social">     <div class="fb-like" data-href="http://thecorbc.com" data-height="25" data-width="90" data-font="arial" data-send="false" style="height: 25px;" data-layout="button_count" data-action="like" data-size="large" data-show-faces="false" data-share="true"></div>  </div> </div>     </body> </html> 

this response get:

<div class="fb-like fb_iframe_widget" data-href="http://thecorbc.com" data-height="25" data-width="90" data-font="arial" data-send="false" style="height: 25px;" data-layout="button_count" data-action="like" data-size="large" data-show-faces="false" data-share="true" fb-xfbml-state="rendered" fb-iframe-plugin-query="action=like&amp;app_id=272978376409853&amp;container_width=330&amp;font=arial&amp;height=25&amp;href=http%3a%2f%2fthecorbc.com%2f&amp;layout=button_count&amp;locale=en_gb&amp;sdk=joey&amp;send=false&amp;share=true&amp;show_faces=false&amp;size=large&amp;width=90"><span style="vertical-align: top; width: 0px; height: 0px; overflow: hidden;"><iframe name="f21bc3aa223b7dc" width="90px" height="25px" frameborder="0" allowtransparency="true" allowfullscreen="true" scrolling="no" title="fb:like facebook social plugin" src="https://www.facebook.com/v2.7/plugins/like.php?action=like&amp;app_id=272978376409853&amp;channel=http%3a%2f%2fstaticxx.facebook.com%2fconnect%2fxd_arbiter%2fr%2flcj5etq5qmd.js%3fversion%3d42%23cb%3df12d208df1a3b78%26domain%3d%26origin%3dfile%253a%252f%252f%252ff193364c386dea8%26relation%3dparent.parent&amp;container_width=330&amp;font=arial&amp;height=25&amp;href=http%3a%2f%2fthecorbc.com%2f&amp;layout=button_count&amp;locale=en_gb&amp;sdk=joey&amp;send=false&amp;share=true&amp;show_faces=false&amp;size=large&amp;width=90" style="border: none; visibility: visible; width: 0px; height: 0px;"></iframe></span></div> 


Comments