I want to use Openlayers inside jquery ui tabs but I get error: "size is null"!
A:
Had the same problem. It's explained at jquery tabs and problems-with-google-maps-api-v3-jquery-ui-tabs.
What I did: in my jquery-ui-1.7.1.custom.css (most recent is 1.8.2) find the line:
.ui-tabs .ui-tabs-hide { display: none !important; }
and change it to:
.ui-tabs .ui-tabs-hide { position: absolute;
left: -10000px; }
jbofill
2010-07-26 22:29:17