Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. jquery .hide().fadeIn()
  2. $('.items').html(response).hide().fadeIn();
  3.        
  4. $('.items').html(response).css({'opacity':0}).animate({'opacity':1});
  5.        
  6. .items {
  7.    display:none;
  8. }
  9.        
  10. $(function(){
  11.     $('.items').fadeOut(function(){
  12.       $(this).html(response).fadeIn();  
  13.     })
  14. });