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.
