Thursday, August 16, 2012

Make Blog/Website Load Faster Using Java Script



1.Login to your blogger Dashboard--> layout- -> Edit HTML


2.Scroll down to where you see </head> tag .

3.Copy below code and paste it just before the </head> tag .

<script charset='utf-8' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>

<script src='http://bnote.googlecode.com/files/jquery.lazyload.js' type='text/javascript'/>

<script charset='utf-8' type='text/javascript'>

$(function() {

   $(&quot;img&quot;).lazyload({placeholder : &quot;http://bnote.googlecode.com/files/grey.gif&quot;,threshold : 200});

});

</script>

4.Now save your template and you are done.Refresh your site to see the result.

No comments:

Post a Comment