Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using some jquery tabs that basically just uses an ul of links to each corresponding id of the tab content.

What I'm trying to do is set a delay between each tab to display a loading indicator. I've looked at several methods of doing this, but am not sure what would be the best method to use, i.e. using a .delay function, or setTimeout or something else entirely?

Any suggestions?

Thanks

Simple html example:

<div id="tabs">

<ul>
<li><a href="#1">Tab 1</a></li>
<li><a href="#2">Tab 2</a></li>
<li><a href="#3">Tab 3</a></li>
</ul>

</div>

<div id="tab-content">


<div id="1">
Tab 1
</div>

<div id="2">
Tab 2
</div>

<div id="3">
Tab 3
</div>
share|improve this question
delay- does it take some time to load your div contents or just you want to add random delay for each div to display? – run Jan 2 '12 at 5:20
Yeah, it may seem kind of counterintuitive I guess, but I need to add a "random" delay. – user1031508 Jan 2 '12 at 5:29
are you using any specific jquery library? – Shoaib Shaikh Jan 2 '12 at 5:32
1  
is you content of tab static? or loaded via ajax? – Shoaib Shaikh Jan 2 '12 at 5:32
just using jquery...the content is static. – user1031508 Jan 2 '12 at 5:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.