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 have view in asp.net mvc3, which has list of products, when user clicks on a product, user goes to another view with product detail, the problem is that the facebook like button is not showing when the page is finish loading. But if i refresh the page, then it displays, where as google plus +1 button is working properly. help plz.

    <!DOCTYPE html>

    <html>

    <head>

         <meta charset="utf-8" />

         <meta name="viewport" content="initial-scale=1.0, width=device-width, height=device-height,user-scalable=no" />

         <title>xxxxxxxx</title>

         <link href="/Content/Site.css" rel="stylesheet" type="text/css" />

         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"> </script>

         <link href="/Content/JqueryContent/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" />

         <script src="/Content/JqueryContent/jquery.ui.core.js.js" type="text/javascript"></script> 

         <script src="/Content/JqueryContent/jquery.ui.widget.js.js" type="text/javascript"></script>

         <script src="/Content/JqueryContent/jquery.ui.position.js" type="text/javascript"></script>

         <script src="/Content/JqueryContent/jquery.ui.autocomplete.js" type="text/javascript"></script>

         <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />

         <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js" type="text/javascript"> </script>

    </head>

    <body>

    <div id="fb-root"></div>

    <script type="text/javascript">

            window.fbAsyncInit = function() {

              FB.init({

                appId      : 'xxxxxxxxxxxx',

                status     : true, 

                cookie     : true,

                xfbml      : true,

                oauth      : true,

              });

              FB.Event.subscribe('auth.statusChange', handleStatusChange);

            };

            (function(d){

               var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}

               js = d.createElement('script'); js.id = id; js.async = true;

               js.src = "//connect.facebook.net/en_US/all.js";

               d.getElementsByTagName('head')[0].appendChild(js);

             }(document));

    </script>

    <header data-role="header" data-theme="a"><h3>xxxxx</h3></header>

    <div data-role="content">

    <div class="fb-like" data-send="true" data-width="450" data-show-faces="true"></div>

    <style>.fb_edge_comment_widget {display: none !important; }</style> 

    <div class="g-plusone" data-size="medium"></div>

    <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>    

    </div>

<footer data-role="footer" data-theme="a" style="font-family:Trebuchet MS;"><h5></h5></footer>

    </body>

    </html>
share|improve this question
you may need to post some code samples or provide a link. I'm not sure this is enough information to answer your question. – shanabus Jun 8 '12 at 19:20
i have added the code, please check it – Jelo Melo Jun 8 '12 at 19:27

1 Answer

You may want to update your FB sdk snippet. I just checked the Facebook Javascript SDK page and it does this:

// Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));

Notice the new method for inserting the js, insertBefore(). Maybe this will help.

Cheers!

share|improve this answer
not working, same problem exists – Jelo Melo Jun 8 '12 at 19:48
did you verify that the fb sdk script is loaded into the dom? Also, what is the status value of the FB object? – shanabus Jun 8 '12 at 20:01
yes it is loaded, but not showing the like button at first – Jelo Melo Jun 8 '12 at 20:02

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.