Questions
To hide the div
div
$('.news').hide();
or
$('.news').css('display','none');
and to show the div:
$('.news').show();
$('.news').css('display','block');
~ Answered on 2013-03-05 12:02:14