.ta{
height:300px;
}
<script>
jQuery(function($) {
var min = 300;
$(".ta").each(function(indx, el) {
var b = $(el),
max = el.scrollHeight,
a = b.next(".read-next");
if (max <= 300) a.hide();
else a.on("click", function(event) {
var h = b.height();
b.height(h < max ? max : min);
$(this).text(h < max ? "" : "");
return false
})
})
});
</script>
спосибо за подсказку.. а вот как вместо height сдлелать max-height
вместо
.ta{
height:300px;
}
.ta{
max-height:300px;
}
..
что нужно изменить в js
|