question_disabler.js 272 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 $(document).ready(function() { $("input.question_disabler").change(function () { // Disables the body of the question. // The flip switch is on the bar, and is still accessible. $(this).parent().parent().next().slideToggle("fast"); }); });