Forums

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

Home Forums CSS [Solved] Problem with IE and Body not adjusting height Re: [Solved] Problem with IE and Body not adjusting height

#77824
jamygolden
Member

Try this:

Code:
$(“ul .menu-arrow”).click(function() {

$(this).toggleClass(“showing”).parent().find(“ul:first”).stop(true, true).slideToggle(“fast”, function(){
$(“#wrapper”).animate({“height” : $(“#right”).height() + “px”});
});

});