I have the following div element:
And another option for the sake of completeness. Toggle opacity:
opacity
$(".description").css('opacity', 0); // hide $(".description").css('opacity', 1); // show
http://jsfiddle.net/KPqwt/
However using visibility is prefered for this task.
visibility