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.

If I paste this code to Notepad++, then open it in Chrome or Internet Explorer, it doesn't work. Does anybody know why?

<html>
    <head>
      <title>My Great Web page</title>
    </head>
    <body>
    enter code here
      <div id="fb-root"></div>
      <script>
        // 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#xfbml=1";
           ref.parentNode.insertBefore(js, ref);
         }(document));
      </script>

      <div class="fb-like"></div>

    </body>
 </html>
share|improve this question
1  
What does "luntch with" mean? – Jan Hančič Nov 20 '12 at 9:28
"Doesn't work" is not nearly enough. What is it supposed to do? what it does? Have you tried debugging? – Jan Dvorak Nov 20 '12 at 9:29
@JanHančič "launch [the page] with" – Jan Dvorak Nov 20 '12 at 9:29
So you want to put Like on your page? – Saber Kordestanchi Nov 20 '12 at 9:32

closed as not a real question by Jan Hančič, CBroe, bensiu, bluefeet, Nimit Dudani Nov 20 '12 at 11:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

This won't work if you just double click the html file and run it straight of the file system, you will need to run it on a web server.

You should also include a doctype in your html.

share|improve this answer
thank you!!! and sorry about my English! – namik2b Nov 20 '12 at 9:49
No worries, I get what you meant but it's worth saying in the question what you're trying to achieve, what exactly isn't working and what you've tried - it helps people answer better! – Ian Routledge Nov 20 '12 at 9:59

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