Hi there,
I'm currently using JCarousel to highlight "featured posts" in Wordpress. The carousel displays above the fold, as part of our header. It works well once it loads, but since we're using it above the fold on a large page with many elements, it has to wait for our entire page to load before it will initiate and display our featured posts. This means it sits there with a "loading" gif for 5-10 seconds, and most users will just scroll by it rather than wait for it to load.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#mycarousel').jcarousel({ scroll : 2 });
});
</script>
This slow loading is bothersome, and therefore, I'd like to have the carousel load first, so it will show up before the rest of the page has loaded. Is there any way for me to do this?
Any suggestions would be greatly appreciated. Thanks!