Hello all, I am using the tabs with a fade in/out effect for the "panels", it works nice.
$(function() { $("#tabs").tabs({ collapsible: true,fx: { opacity: 'toggle'}, selected: -1 }); }); What I would like to do is a type of animation for the tab titles (> ul li a), so that when I click to one of those the selected one would appear in a smoother way, fadein/out etc.. I have tried various things, adding code lines in the inline script or trying to put something like fadeIn('slow') in the ui.tabs.js where it adds the "selected" class, but I haven't managed to achieve anything... Any ideas? Thanks