Facebook Social Comment Box

I have placed Facebook Social Comment Box on my site mixsms.com to have discussion. It is fine and fit for my needs, but I noticed that after placing it on my pages, it takes too long to load a page. In other words it has increased page load time or doubled it.

Please guide me if there is any way to load my page asynchronous so script dont render the page slowly.

Thanks in advance for your support.

Scripts block the loading process of the page. Move your scripts to the end of the body, just before the </body> tag.


<html>
<head>
    ...
</head>
<body>
    ...
    <script src="script.js">
</body>
</html>