In previous versions of jQuery tabs there was an option to automatically set the height of the tab to that of the tallest tab in the group using:
$('#container').tabs({ fxAutoHeight: true });
However this does not seem to work in jQuery UI 1.5.3.
Has this option been removed? If so is there another way to get the same functionality?
All you have to do is to set a min-height. (It's taken me ages to find the answer to this .. I hope it helps!).
Here is my code that really works:
$("#tabs").tabs().css({
'min-height': '400px',
'overflow': 'auto'
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With