My web page is like the following:
<div id="id1" class="stuff">
TEXT, FORMS, and STUFF
</div>
<div id="id2" class="stuff" style="display:none">
TEXT, FORMS, and STUFF
</div>
<div id="id3" class="stuff" style="display:none">
TEXT, FORMS, and STUFF
</div>
<a id="btn1">DD</a>
<a id="btn2">DD</a>
<a id="btn3">DD</a>
Under this I have jQuery click events which set the display of the clicked item to inherit and the others to none.
$("#btn2").click(function (e) {
$("#id1").css('display','none');
$("#id3").css('display','none');
$("#id2").css('display','inherit');
});
The showing and hiding works correctly however I do notice that some things in the initially hidden divs do not render correctly, especially the elements that get manipulated by CSS. Essentially when the page loads the hidden divs do not correctly get rendered and when they are shown things look ugly. What is the way to properly do this?
EDIT::::::::::::::::::::::::::::::::::::::::::::::
What I ended up doing is setting all of the initially hidden divs to “visibility: none”, then in the pages onLoad() event setting the display: none. When I toggle I change both the visibility and display. Everything renders correctly and because things are statically set to not visible there is no ugly 2 seconds where all the divs show.
Try using
visibilityinstead. Example:Both
displayandvisibilitycan have an effect on browser behavior.An alternative work-around to both is to set the
opacityof the divs you want to hide to0. That always works in my experience but is less elegant.Update in reply to comment: In that case, you can set other properties like the
widthandheightto0pxand theover-flowtohiddenso that the divs don’t occupy any space on screen. Ugly, but basic, and works.You can use the jQuery
addClassandremoveClassmethods to make the divs visible and invisible, e.g.:$("#id1").removeClass("hidden");and$("#id3").addClass("hidden");.