Ejemplo fadeIn
Código JS
$('a.button').click(function(event){
$(this)
.fadeOut('fast')
.fadeIn('slow');
event.preventDefault();
});
Código HTML
<a class='button' href='#'>Ejemplo fadeIn</a>
$('a.button').click(function(event){
$(this)
.fadeOut('fast')
.fadeIn('slow');
event.preventDefault();
});
<a class='button' href='#'>Ejemplo fadeIn</a>