Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS jquery show/hide and some other questions Re: jquery show/hide and some other questions

#50388
At_the_Gates
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