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?
It looks like it's no longer there, check out this plugin for the same functionality
Equal Heights Plugin
Set tab minimum height and resize property to none...
example:
In jQuery 1.9, use the
heightStyle
attribute (docs here)Check the url:
http://api.jqueryui.com/tabs/#option-heightStyle
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: