I am close to finishing a project but there is only one thing that I can't get to work, and that is how to animate this function:
$('.box').click(function(){
var description = $(this).find('.hide').text();
$('.description').text(description);
});
So what you see here is that I get a text from an element and place it into another element. But it is really rough it's just 'pop' and there it's. I tried serval things like putting .fadeIn() into the chain. Also I was thinking about doing it inside .animate() but I couldn't find a way to put it in. So my question is: Is there a way to animate this? or is it just simply not possible?
Thanks in advance :D