...but was unsuccessfully able to make one of my subquestions exclusive per column.
See this post -
forums.limesurvey.org/forum/can-i-do-thi...th-checkboxes#227597
If you want the last column to be exclusive, change this:
Code:
$('tr[id^="javatbd"]:first td.checkbox-item', thisQuestion).removeClass('normal-opt').addClass('exclusive-opt');
To this:
Code:
$('tr[id^="javatbd"]:last td.checkbox-item', thisQuestion).removeClass('normal-opt').addClass('exclusive-opt');