I have this test to load the Facebook JavaScript SDK synchronously:
<html>
<body>
  <script>alert('1');</script>     
  <script src="https://connect.facebook.net/en_US/all.js" />
  <script>alert('2');</script>
</body>
</html>
For me, the second alert is never shown, any ideas why?
 
     
    