up vote 0 down vote favorite
share [g+] share [fb]

I am using jQuery UI Tabs to control the presentation of content on a portfolio page I am implementing. The page consists of many large images and the tabs take about a second or two to fully load. I want to know if their is a way to hide/mask all content until the tabs are loaded. Optimally I would like to have a loading graphic appear until the tabs are loaded.

Please advise.

Thanks, Brad

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

$(document).ready is for when the DOM is fully loaded by not the content. What you will want to do is have the tabs div set to display:none in the css until the images have fully loaded. In oldschool javascript, we used to use the .onload() function. You will want to use this and when it fires, you the set the tab's div to display:block (or use jQuery's .show()). For the wait graphic, use a spinner in a div that's css is display: block. Then in the onload() function, do the jquery .hide().

link|improve this answer
feedback

This question is very old, but there is a trick to prevent the FOUC (Flash of Unstyled Content)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.