Guest User

Untitled

a guest
Apr 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $(function () {
  2. var img = new Image();
  3. $('img').each(function(){
  4. .load(function () {
  5. $(this).css('display','none');
  6. $('#loader')
  7. .removeClass('loading')
  8. .append(this);
  9. $(this).fadeIn();
  10. })
  11. });
Add Comment
Please, Sign In to add comment