Dave,
Thanks so much for sending along an example! I think I discovered the problem. Since I want the tab content panels to span the available display area, I was doing the following.
var winWidth = $(window).width();
var winHeight = $(window).height();
var padding = Math.min(Math.floor(0.05 * winWidth), Math.floor(0.05 * winHeight));
var tabWidth = winWidth - padding;
var tabHeight = winHeight - padding;
$('#tabs').height(tabHeight);
Prior to making that last call, the command you suggested does indeed return the height of the tab content area. After making the above call, the call you suggested no longer yields the tab content area height. Instead it is the height of the entire tab.
I am new to Javascript and CSS. I've read parts of the "Javascript: The Missing Manual" and "CSS: The Missing Manual" but clearly I don't understand how to refer to the different attributes of the tab panel and set them.
If I want to get the content area to span the display area, how should I be setting the dimensions of the content area?
Do you have any particular references you'd recommend for learning how to refer to the different attributes of JQuery tabs?
Thanks again for your help Dave.
Chris