brett.byron
2/13/2019 - 6:27 PM

Job List Accordion Style

.jv-job-list {display: none;}
.expanded {display: block;}
// .h2 class is applied to category (or however you're grouping) headers.
// if you need to be more specific, then change jobCategoryContent macro
<script>
    $('.h2').click(function() {
        $(this).next('table').toggleClass('expanded')
    });
</script>