I'm using ShareThis to include a nice social network share bar on my site. The problem is that it loads very slowly sometimes and holds up the loading of the page for several seconds.
The following has to be included in the HTML head:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
Then the following is at the bottom of body:
<script>
var options={ "publisher": "xxxxxxxxxxxxxxxxxxxx", "position": "left", "ad": { "visible": true, "openDelay": 5, "closeDelay": 0}, "chicklets": { "items": ["facebook", "googleplus", "pinterest", "amazon_wishlist", "email", "sharethis"]}};
var st_hover_widget = new sharethis.widgets.hoverbuttons(options);
</script>
I was thinking that if I could force this to load after the page, so it doesn't slow the page down. Is there an easy way to do this? For instance, could all this code be inserted into the correct places in the HTML by javascript after the page is loaded, and then continue to load as it should, in order that the pages loads quickly and then the ShareThis bar can load after the rest of the page?
Could you put the sharethis code in a separate frame? Then the main page and the social bar would load independent of each other.