show/hide this revision's text 2 added 46 characters in body

Edit: simplified to use toggleClass()

You could try doing it manually, like adding and removing toggling a css class called "hidden." It might look something like this:

function myHide(element_idmyToggle(element_id)
{
    mydiv = $('#' + element_id);
    if(mydiv.hasClass("hidden"))
        mydiv.removeClass("hidden");
    else
        mydiv.addClass("hidden")mydiv.toggleClass("hidden");;
}

And you your css file would have:

.hidden
{
    display:none;
}

I haven't tested this, but this is the kind of workaround I imagine you'd want to think about if this is, indeed, a bug in jQuery/IE8.

show/hide this revision's text 1

You could try doing it manually, like adding and removing a css class called "hidden." It might look something like this:

function myHide(element_id)
{
    mydiv = $('#' + element_id);
    if(mydiv.hasClass("hidden"))
        mydiv.removeClass("hidden");
    else
        mydiv.addClass("hidden");
}

And you css file would have:

.hidden
{
    display:none;
}

I haven't tested this, but this is the kind of workaround I imagine you'd want to think about if this is, indeed, a bug in jQuery/IE8.