×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Javascript
Posted by: Nilesh Yadav
Added: Jun 7, 2017 12:25 PM
Views: 2341
Tags: no tags
  1. $(window).bind("load", function(){
  2.  var timeout = setTimeout(function() {
  3.   $('.lazyload1second').each(function(){      
  4.    $(this).attr('src', $(this).attr('original_link')).fadeIn(700);
  5.    $(this).removeAttr('original_link');  
  6.   });
  7.  }, 500);
  8. });