manage-classifications.js 108 Bytes
$(function() {
  "use strict";
  $('.value-name').click(function() {
    $(this).next().toggle();
  });
});