JQuery UI Tabs documentation (my slider, Google Map, sIFR etc. not work when placed in a hidden tab)

JQuery UI Tabs documentation (my slider, Google Map, sIFR etc. not work when placed in a hidden tab)

Hi everybody

Is there a special place, where to discuss the documentation of JQuery?

Because I had recently an issue with the JQuery UI Tabs. I needed to hide the inactive tabs without "display:none".

But when I used the resolution here: http://docs.jquery.com/UI/Tabs#...my_slider.2C_Google_Map.2C_sIFR_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F

Then I got some issues with white space of the page.

So I would suggest this solution:

  1. .ui-tabs .ui-tabs-hide {
  2.       position: absolute;
  3.       left: -10000px;
  4.       top: -10000px;    
  5. }
This worked for me.

What do you think?