The article discusses Jasper AI, transform the way you create content with Jasper AI! Discover the power of artificial intelligence in writing with its AI-powered content creation service. Create high-quality, original content for your blogs, business, or personal needs in a matter of seconds. With user-friendly interface and affordable pricing, Jasper AI is the perfect tool for enhancing your writing skills and improving productivity. Check out here for a comprehensive review and real-life examples of using Jasper AI.
[JavaScript] Lazy Load Facebook Like Box To Speed up Page Load Time | Website Performance Monitoring
Lazy load Facebook's likebox —
I today demonstrate you Facebook lazy loading likebox for your site and auto load content on scroll down, so stop searching to defer lazy loading of Facebook widgets to speed up page loading. The Facebook likebox always downloads extra data when the user visits each time your site which causes page loading time slow. The Facebook developer button with like Box is a special version of the LIKE Button designed for Facebook Pages. Showing "Like us on Facebook page" is easier but it cost much in terms of page loading. This method uses to defer both JavaScript + HTML Facebook likebox button and follows all the rules by Facebook page developer. This technique also lazy load the Facebook content placeholder css while you scroll the pages. The widget code and jquery lazy load content on the scroll.
There is special like box WordPress plugins for the custom like button facebook widget that load content while scrolling with jquery. But what about the blogger users? What if the facebook app not loading faster as page load? This tutorial answers for blogger and Facebook widget WordPress code as well to use jquery on the scroll for differ loading of Facebook like fan page by using jquery ajax load javascript. Here I have provided the direct code of widget for Facebook page likebox as a Facebook like page plugin. I suggest you use it with your website not only for faster page loading but for better Facebook marketing. Learn how to add Facebook to the website and how to defer the loading of Facebook like box by lazy load FB JavaScript for making page speed much faster.
In the category of Facebook, last time we have seen how to see locked profile picture hack, and today we are going to focus on page loading. We are going to use the better technique by lazy load script to defer loading of any widget. You can ignore the data downloaded by this widget but you need to concentrate its loading-time because it directly affects to your site loading-time.
Also read; 5 Advanced Tips For Making Blogger Blog To Load Faster
Defer Facebook Developer Button
Lazy load Facebook like button script uses the browser's lazy-loading mechanism by setting the loading="lazy" iframe attribute. The effect is that the browser does not render the plugin if it's not close to the viewport and might never be seen.For better page performance this is an essential tip and as the page content is more important than widgets, it is much better to make a delay loading of these widgets so that it will load only when the whole page gets loaded.
Lazy Load Facebook Like Box JavaScript
Add following code in your HTML widget:RECOMMENDED: [Facebook Security Alert] Use 3 Passwords To Access Facebook Account // FB Update
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$('#fbHolder').append('<div id="fb-root"></div>');
$('#fbHolder').append('<fb:like-box href="http://www.facebook.com/ID" width="300" show_faces="true" stream="false" header="false"></fb:like-box>');
jQuery.getScript('http://connect.facebook.net/en_US/all.js#xfbml=1', function(){FB.init({status:true,cookie:true,xfbml:true});});
}); //]]>
</script>
<!-- lazy loading of Facebook widget -->
<div id="fbHolder">
<!-- put here your old Facebook widget box code -->
</div>
A demo is working here on this site, or you can check its performance on Page Speed and Pingdom Page Speed, significantly you will see the changes in the report.
Thanks for all this new and working technique!