I was using jquery 1.3 on my website. Today I updated it to newest 1.9 and my toggle/animate script stopped to work.
The code looks like that:
$('#toggler').click( function() { $('#tcontent').toggle( function() { $(this).animate({height: "70"}, 800); }, function() { $(this).animate({height: "6"}, 800); } ); });