Подскажите пожалуйса. возникла проблема с IE. В других браузерах все нормально работает, в IE не хочет. Вот сам скрипт:
$(document).ready(function(){
$('div.block-read-more').css(
{'height':'80px','overflow':'hidden'}
);
$('<div class="button-read-more clearfix">Читать дальше...</div>').insertAfter('div.block-read-more');
$('div.button-read-more').toggle(function(){
$(this).prev().animate( {
'height':'100%',
'overflow':'visible'}, 300, 'linear');
}, function(){
$(this).prev().animate( {
'height':'80px',
'overflow':'hidden'}, 300, 'linear');
});
$('div.button-read-more').toggle(function(){
$(this).text('Сернуть...');
}, function(){
$(this).text('Читать дальше...');
});
});