views:

36

answers:

2

I have a set of tabbed divs that I am hiding and showing with jQuery hide() and show(), this works great in all browsers except IE where the tabbed elements that have been hidden, when shown, are not clickable as links, or focusable/selectable as form select, text field, etc.

Has anybody had experience with this? Is there some sort of reset that I could do for IE to render these items reachable?

A: 

http://api.jquery.com/bind/ - this might help

A: 

Our designer ended up solving this with the CSS being updated when we show/hide tabs:

.tab_current { position: relative; z-index: 1; } .tab_hidden { position: relative; z-index: -1; }

Gordon Isnor