This .show and .hide works great in Firefox, Chrome, Safari but not in IE 7. In IE the span doesn't hide, it alway show all of (three) tabs.

Am I doing something wrong?

<script>
var currentTab = 0; 

function openTab(clickedTab) {
    var thisTab = $(".tabbed-box .tabs a").index(clickedTab);
    $(".tabbed-box .tabs li a").removeClass("active");
    $(".tabbed-box .tabs li a:eq("+thisTab+")").addClass("active");
    $(".tabbed-box .tabbed-content").hide();
    $(".tabbed-box .tabbed-content:eq("+thisTab+")").show();
    currentTab = thisTab;
}

$(document).ready(function() {
    $(".tabs li:eq(0) a").css("border-left", "none");

    $(".tabbed-box .tabs li a").click(function() { 
        openTab($(this)); return false; 
    });

    $(".tabbed-box .tabs li a:eq("+currentTab+")").click();
});

</script>
link|improve this question
Can you show the running code for example on jsfiddle? Or at least post the HTML. – RoToRa Oct 21 '11 at 8:33
feedback

1 Answer

A span tag can only contain other inline elements, but I suspect that you have block elements inside your tabs.

If you would dig deeper into what's happening in IE7, I think that you will find that the span elements are hidden just fine, but the browser has made an attempt to correct the invalid HTML code so that the contents of the tabs are no longer inside the span tags.

If that is the case, just using div tags instead of span tags for the tabs would solve the problem.

link|improve this answer
I try to change span to div, but it still as before.. – Mate Tosapon Oct 21 '11 at 7:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.