Сообщение от рони
|
mbrogan,
попробуйте сделать через .toggleClass() используя только css
|
Спасибо, все решилось, таким образом:
(function () {
var flag = true;
$("button").click(function () {
if (flag) {
var height = $("#tab-description").css("height", "auto").height();
var overflow = $("#tab-description").css("overflow", "visible");
$("#tab-description").css("height", "106px")
$("#tab-description").animate({"height": height});
document.getElementById('tab-description').style.overflow = 'visible';
}
else
{
document.getElementById('tab-description').style.overflow = 'hidden';
$("#tab-description").animate({"height": "106px"});
}
flag = !flag;
});
})()
Причем пришлось переставлять местами
document.getElementById('tab-description').style.overflow = 'hidden';
$("#tab-description").animate({"height": "106px"});
почему то не хотел работать.