In response to my last question here:
Jquery to detect identical class and text for tab navi
I have a got it succesfully working in all browsers except IE 7. IE 8,9 FF 5,6 Safari and Chrome all can implement my code correctly except ie7.
Anyone suggestions?
DEMO
I think you are complicating something that can be very simple.
If you have (for example) three navigations:
li
li
li
and the three tabs:
tab
tab
tab
The easiest way is to grab the
index
number of the 'action button li' that will trigger the 'tab' with SAME index using the jQuery's:eq()
selector.jQuery API Docs:
:eq()
.index()