$('#toggler').click( function() {
$('#tcontent').toggle(
function()
{
$(this).animate({height: "70"}, 800);
},
function()
{
$(this).animate({height: "6"}, 800);
}
);
});
Try this
<a href="#" id="toggler" data-show="no">Show more</a>
and
$(function() {
$('#toggler').on("click",function(e) {
if ($(this).data("show")=="no") {
$('#tcontent').animate({height: "70"}, 800);
$(this).data("show","yes");
}
else {
$('#tcontent').animate({height: "6"}, 800);
$(this).data("show","no");
}
});
});