question_disabler.js 272 Bytes
$(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");
    });
});