Is there a way to toggle multiple divs of varying heights, all with the same class? What is the most effective approach to achieve this?
$('.smallify').on('click', function() {
if ($(this).parent('.container').css('height', '');) {
$(this).parent('.container').css('height', '20px');
} else {
$(this).parent('.container').css('height', '');
});