Option to expand/contract sections on the everything page
I'd like the option to hide sections. eg:
$(function() {
$(".category h1").click(function() {
$(this) .parent()
.css({
'overflow': 'hidden',
'height': $(this).hasClass('open') ? 'auto' : '25px'
});
$(this) .toggleClass('open');
}).css('cursor', 'pointer');
})
3
votes