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?