How to trigger fadeIn fadeOut effect in Jquery tabs on switching from one to another
Asked
Active
Viewed 1,647 times
-1
-
Can you post here the code you already have? We will probably need something to start with. – Petr R. Jul 19 '13 at 09:07
1 Answers
3
You could use activate . It gets triggered when a new tab is activated :)
$(function() {
$( "#tabs" ).tabs({
activate: function( event, ui ) {
ui.newPanel.hide().fadeIn(500);
}
});
});
Here is fiddle to help you

Kiran Ruth R
- 902
- 1
- 11
- 28