Home › Forums › CSS › [Solved] Problem with IE and Body not adjusting height › Re: [Solved] Problem with IE and Body not adjusting height
June 14, 2010 at 3:44 pm
#77824
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”});
});
});