The solution mentioned earlier works in Chrome, but not in Firefox for any reason (I'm sure it worked a while ago). I found another solution:
first you need a general rule to βhideβ content without using a display: none;
.ui-tabs .ui-tabs-hide {
display: block !important;
height: 0!important;
width: 0!important;
border:none!important;
visibility:hidden!important;
}
.ui-tabs .ui-tabs-hide object,
.ui-tabs .ui-tabs-hide embed {
height: 0;
width: 0;
}
This works for me. Tell me if this works for you! Jerome WAGNER
source
share