overview.js 270 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 jQuery(function () { jQuery('.handlediv').click(function () { if (jQuery(this).parent().hasClass('closed')) { jQuery(this).parent().removeClass('closed'); } else { jQuery(this).parent().addClass('closed'); } }) });