jQuery tabs: fadeIn/fadeOut the content on tab switch -


how trigger fadein fadeout effect in jquery tabs on switching 1 another

you use activate . gets triggered when new tab activated :)

$(function() {     $( "#tabs" ).tabs({         activate: function( event, ui ) {             ui.newpanel.hide().fadein(500);         }     });   }); 

here fiddle


Comments