d
Amit DhamuSoftware Engineer
 

FadeIn Image When Loaded

1 minute read 00000 views
$('img').each(function () {
  $(this).hide()
  $(this).load(function () {
    $(this).fadeIn()
  })
})