You can include the script after the HTML it works with, for example right before the closing body tag, and not use the ready handler:
<script type="text/javascript"> jQuery.noConflict(); jQuery('#latest > ul').tabs({ fx: { opacity: 'toggle' } }); jQuery('#carousel > ul').tabs({ fx: { opacity: 'show' } }).tabs ('rotate', 4000); </script> --Klaus On 8 Dez., 19:51, Illah <[EMAIL PROTECTED]> wrote: > Forgot the link: > > http://www.grooveeffect.com/ > > On Dec 8, 10:31 am, Illah <[EMAIL PROTECTED]> wrote: > > > I use jQuery tabs for a carousel (see link below) but the problem is > > the script doesn't fire until the page is fully loaded. On slower > > connections, or depending on if my ad network is piping through giant > > ads, this can make for some long, awkward moments when all the divs > > are revealed until the script finally fires. > > > Is there any way to make the script fire immediately, even if the page > > isn't fully loaded? > > > Thanks!