Hello guys,
First tab on my page has a lot of content, including text and pictures.
This probably causes visual issue:
Once user loads the page, for a second, he will see regular html list instead of styled tabs with background.
Something like this:
- Tab One
 - Tab Two
 - Tab Three
 
All javascripts and css are loaded on top of the page in head section.
Does anyone know any solution to this issue?
Thanks in advance!
<script src="/js/jquery.ui/jquery-1.3.2.js" type="text/javascript"></script>
<link rel="stylesheet" href="/css/ui.tabs.css" type="text/css">
<script src="/js/jquery.ui/ui/ui.core.js" type="text/javascript"></script>
<script src="/js/jquery.ui/ui/ui.tabs.js" type="text/javascript"></script>
        <div id="container-1">
            <ul>
                <li><a href="#fragment-1"><span>Tab One</span></a></li>
                <li><a href="#fragment-2"><span>Tab Two</span></a></li>
                <li><a href="#fragment-3"><span>Tab Three</span></a></li>
            </ul>
            <div id="fragment-1">
              !!!!!! A lot of html code and pictures here !!!!!!
            </div>
            <div id="fragment-2">
               some text 2
            </div>
            <div id="fragment-3">
               some text 3
            </div>
        </div>