Hide jQuery Accordion while loading

自古美人都是妖i 提交于 2019-11-30 02:13:00

I do this first thing with all my sites: Right after the body tag, put a script tag with this javascript:

jQuery('body').addClass('js');

This gives you a style hook for any elements that will look different in some way when Javascript enabled, and it happens immediately.

There are good solutions to the rest of your problems in the other answers. You'll just need two "base" styles instead of one:

#navigation ul li { /*open styles for no javascript*/ }
body.js #navigation ul li { /*closed styles for pre dom.ready*/ }

... and then re-open before applying the accordion on dom.ready.

EDIT: If you're loading jQuery at the end of the page (or aren't using jQuery), you can use this straight javascript version:

<script type="text/javascript">
    var b = document.getElementsByTagName('body')[0];
    b.className+=b.className?' js':'js';
</script>

I faced this very problem a week ago. I set the container to display:none and then used jQuery to make it show up at the appropriate time:

$(".accordion").show();
$(".accordion").accordion();

Code inside jQuery.ready() doesn't run until the DOM is ready — so it's normal for elements that will eventually be hidden to stay visible for a while. Accordion is set up this way partly for ease of use and partly for the sake of graceful degredation: content won't be missing (hidden) if JavaScript is disabled.

If you're willing to risk a page that breaks without JavaScript, go ahead and set your elements to be hidden. Then, immediately before .accordion(), show() them.


Here's an idea to maintain compatibility. It has been minimally-tested and is open to comment.

Leave your CSS alone, but add this to the top of your JavaScript (outside jQuery.ready()):

document.styleSheets[0].addRule(".yourclass", "display:none");

That way, as the page is being constructed, a CSS rule will be set up to hide your hidden elements. Then, inside jQuery.ready(), call $(".yourclass").show() to bring them back before initializing the accordion.

Do your .accordion binding directly in a <script> just below the accordion elements instead of waiting for document ready.

They'll then activate as soon as possible, rather than waiting until the page is ‘ready’ (which can take a long time especially on IE, which doesn't support the DOMContentLoaded event, so jQuery has to wait for onload, which only fires after all the images and everything are loaded).

You could set the accordion parent element to ‘visibility: hidden’, and then restore it to ‘visible’ manually when the script initialises. But then browsers with JavaScript off won't see the content at all, which isn't ideal.

Stryder

be careful using this with regard to accessibility:

body {
  display: none; 
}

If for whatever reason javascript is turned off, then nothing will be displayed ;)

I haven't used UI accordion, but I have built accordions with jQuery. The only thing the script does is to alternate the visibility of the accordion panels. So if one panel is visible when the page loads, then perhaps you should try using a CSS rule such as:

ul.sub{
  visiblity:hidden;
  display:none;
}

I tried to hide the elements in the CSS to keep them from appearing while loading but all that achieved is in having them always hidden.

Why don't you try making it hidden in the css, and then do this:

jQuery('#navigation').show().accordian...

I have hundreds of jQuery elements (tabs, sliders & accordions) across many portal sites. Setting hide/show styles for each isn't a realistic option.

Simple solution, hide the body until jQuery is ready and has built the elements, then show the body.

In my master stylesheet:

body {
  display: none; 
}

In my master javascript file, at the bottom of jQuery.ready():

$(document).ready(function() { 
   $("body").show(); 
}

I have been using css solutions like the one Tim suggested, but these would mean to hide content for people with javascript disable (or devices with no javascript support). I much prefer the solution provided by Jerph, thanks for sharing.

Arunraj S

I haven't used UI accordion, but I have built accordions with jQuery. The only thing the script does is to alternate the visibility of the accordion panels. So if one panel is visible when the page loads, then perhaps you should try using a CSS rule such as:

ul.sub{
  visiblity:hidden;
  display:none;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!