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.

Here is my html page code

    <html>

    <head>
        <title>Big Query & D3.js Mashup</title>
        <meta property="og:title" content="My Site"/>
        <meta property="og:type" content="website" />
        <meta property="og:url" content="http:xample.com" />
        <meta property="og:image" content="" />
        <meta property="og:site_name" content="Data" />
        <meta property="fb:admins" content="1" />
    </head>

    <body>
        <div id="fb-root"></div>
        <script>
            (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 = "//connect.facebook.net/en_US/all.js#xfbml=1";
                fjs.parentNode.insertBefore(js, fjs);
            }(document, 'script', 'facebook-jssdk'));
        </script>   <a href="https://twitter.com/share" class="twitter-share-button"
        data-url="http:xample.com" data-via="jmy" data-lang="en">Tweet</a>

        <script>
            ! function (d, s, id) {
                var js, fjs = d.getElementsByTagName(s)[0];
                if (!d.getElementById(id)) {
                    js = d.createElement(s);
                    js.id = id;
                    js.src = "https://platform.twitter.com/widgets.js";
                    fjs.parentNode.insertBefore(js, fjs);
                }
            }(document, "script", "twitter-wjs");
        </script>
        <div class="fb-like" data-href="http:xample.com/" data-send="false"
        data-layout="button_count" data-width="450" data-show-faces="true" data-font="arial"></div>
    </body>

</html>

Updated Code:

    <html>

<head>
    <title>Big Query & D3.js Mashup</title>
    <meta property="og:title" content="My Site"/>
    <meta property="og:type" content="website" />
    <meta property="og:url" content="http:xample.com" />
    <meta property="og:image" content="" />
    <meta property="og:site_name" content="Data" />
    <meta property="fb:admins" content="1" />
</head>

<body>
    <div id="fb-root"></div>
    <script>
        (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 = "//connect.facebook.net/en_US/all.js#xfbml=1";
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    </script>   <a href="https://twitter.com/share" class="twitter-share-button"
    data-url="http://xample.com" data-via="jmy" data-lang="en">Tweet</a>

    <script>
        ! function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (!d.getElementById(id)) {
                js = d.createElement(s);
                js.id = id;
                js.src = "https://platform.twitter.com/widgets.js";
                fjs.parentNode.insertBefore(js, fjs);
            }
        }(document, "script", "twitter-wjs");
    </script>
    <div class="fb-like" data-href="http://xample.com/" data-send="false"
    data-layout="button_count" data-width="450" data-show-faces="true" data-font="arial"></div>
</body>
</html>

Twitter link appears but facebook link doesn't appear.

share|improve this question
I just copy-pasted your updated code into JSFiddle here and the facebook link showed up. – Roddy of the Frozen Peas Nov 27 '12 at 17:48

1 Answer

up vote 2 down vote accepted

The url is wrong should be http://www.example.com instead of http:xample.com

 <div class="fb-like" data-href="http://www.example.com/" data-send="false"
    data-layout="button_count" data-width="450" data-show-faces="true" data-font="arial">

http://jsfiddle.net/E6xYU/2/

share|improve this answer
its working in jsfiddle.But when i try the above code in an html page its not working – iBlue Nov 27 '12 at 16:26
You need to paste the whole code. – Ashwin Singh Nov 27 '12 at 17:14
well thnks now its missing.Was a typo – iBlue Nov 28 '12 at 12:16

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.