Home › Forums › CSS › jquery show/hide and some other questions › Re: jquery show/hide and some other questions
October 8, 2008 at 12:03 pm
#50388
Participant
This always seems to happen in IE when using show/hide – you also get really nasty un-aliased type (ClearType won’t apply itself for some reason).
You can workaround it easily by using the sliding effects:
.slideUp()
.slideDown()
.slideToggle()
instead of
.show()
.hide()
.toggle()
James