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 am using a simple tabbed interface.

I have 5 tab nav buttons corresponding to 5 "sections."

<ul class="tabnav">
<li class="about">
 <a href="#about"></a>
</li>

<li class="menu">
<a href="#menu"></a>
</li>

<li class="images">
<a href="#images"></a>
</li>


<li class="reservations">
<a href="#reservations"></a>
</li>


<li class="privents">
<a href="#contact"></a>
</li>
</ul>

My sections are ordered in a different way.

The "Images" section is first, because I want the slideshow to be the first thing people see.

The "Menu" section is second. The "About" section is third. The "Reservations" section is fourth. The "Contact" section is last.

** The position of "Images" and "About" sections is interchanged.

With this arrangement, the image section displays first. But when I click the first tab nav button "About" it does not navigate to the "About" section. Instead, I have to click on some other tab nav button and then click the "About" button to get to the "About" section.

Can anyone shed some light on this?

Is this a bug within jQueryUI Tabs?

The tabs are referencing div ids, so the section order shouldn't matter, right?

share|improve this question
Can you reproduce on a site like JSFiddle? I can't get it to happen: jsfiddle.net/gSnuU. Also, could you include your JavaScript? – Andrew Whitaker Jan 4 '12 at 0:48
Sorry for the previous link, here's the actual link: jsfiddle.net/gSnuU/5 – frishi Jan 4 '12 at 15: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.