If you are using jQuery, use the show method:
$('#area').show();
You can also control the speed of the animation:
$('#area').show("slow"); $('#area').show("fast");
Or you can specify the exact time in milliseconds. Here's the official documentation:
jQuery Show
source share