you can use jquery built in functions for .slide () or animate ()
so instead of using:
$('#someElement').html('some content');
to try
$('#someElement').html('some content').slideDown(some speed ie 600);
you need to first hide (i.e. show: none) the content area. maybe wrap the contents in a div with id / class and set to display: none
source
share