I would like your opinion on the problem and solution that I have google plus one button (and any other social widget).
We have a website with high traffic that works quickly and smoothly (load time less than 1 second). When trying to implement the google plus button, we saw that our download time had grown to absurdity.
Does Google blur all download times and they still make a slow widget?
We need social widgets, but download speed is critical for our users and SEO.
I was thinking of downloading the google button after the site was loaded so that users would not notice the difference in speed, but still had the opportunity to plop with us.
I would like to hear the minuses of this approach or maybe even a better solution.
Using the mouseover event on the body to load social widgets. It works, but I'm not sure if this is acceptable.
http://www.webpagetest.org shows the same speed as before the implementation of the buttons.
Using jquery:
<div id="testcase"></div> <script type="text/javascript"> $(document).ready(function() { $('body').mouseover(function() { $('body').unbind(); </script>
Please let me know what you think, or I could improve this idea.
source share