How To Increase Website/Blog Loading Speed Latest 2012

blog loading speed

Blog loading time makes an very big impact on the behavior of visitors and sometimes it is one of the major thing which pushes your blog visitors out of your blog rather than the quality of your blog contents. In my previous posts,  step to increase your blog loading speed and the thing to be noticed here is - this step doesn't require you to reduce image, Css, html sizes of your blog, etc. All it needs is to add a simple lazyload java script  snippet on your template html. So what are you waiting for?, let us move with this simple tutorial.

How To Increase Blog Loading Speed

1. Go to blogger dashboard --> Template --> Edit Html.

2. Find(Ctrl+F) for </head> and place the following peace of code just above it.
<script charset='utf-8' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script src='http://beautifulbloggerwidgets.googlecode.com/files/lazyload-min.js'
type='text/javascript'/>
<script charset='utf-8' type='text/javascript'>
$(function() {
$(&quot;img&quot;).lazyload({placeholder : &quot;http://beautifulbloggerwidgets.googlecode.com/files/grey.gif&quot;,threshold : 200});
});
</script> 

3. Save the template.

No comments:

Post a Comment