Bug With UI Tabs in 1.7.1?
I'm using the latest version of jQuery and UI but when I try applying
any kind of fade or height toggle on my tabs, clicking one tab to the
next "stutters." Basically, the current tab drops down when another
tab is clicked, then the new tab slides down after, it's real jerky
looking. It should be the current tab's content slides up but it goes
down so there's like a double slide before the second tab's content is
displayed. Is this a new bug? Here is my code:
$(document).ready(function(){
/* intialize tabs */
$('#myDiv').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});