I am using jQuery\'s toggle() to show/hide table rows. It works fine in FireFox but does not work in IE 8.
.show()/.hide() work fine though
.show()
.hide()
I found that while this does not work in IE8
$('.tableRowToToggle').toggle();
but this does work:
$('.tableRowToToggle').each(function(){this.toggle()});
Got the idea from the link jAST posted here before