tpartner wrote: This script should work for LS version 2.5:
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Identify the questions
var thisQuestion = $('#question{QID}');
var qHidden = thisQuestion.nextAll('.text-short:eq(0)');
var hiddenInput = $('input.text', qHidden);
// Hide qHidden
qHidden.hide();
// Listener on the checkboxes
$('input.checkbox', thisQuestion).on('change', function(e) {
// Build an array of checked answers
var checkedAnswers = [];
$('input.checkbox:checked', thisQuestion).each(function(i) {
checkedAnswers.push($(this).nextAll('.label-text:eq(0)').text());
});
// Load the hidden question with a random item from the array
var checkedLength = checkedAnswers.length;
$(hiddenInput).val(checkedAnswers[Math.floor(Math.random()*checkedLength)]);
// Fire Expression Manager
checkconditions(hiddenInput.value, hiddenInput.name, hiddenInput.type);
});
});
</script>
Sample survey attached:
I use a modified script of this one to keep the 3 answers of a multiple choice and work fine but it doesn't work with the Other option activate. I think "Listener on the checkboxes" doesn't work with "Other option", only when check/uncheck subquestions. I need to keep the text in the textbox when Other option is checked. Any suggestion??
This is the script I'm using:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Identify the questions
var thisQuestion = $('#question{QID}');
var qHidden = thisQuestion.nextAll('.text-short:eq(0)');
var qHidden2 = thisQuestion.nextAll('.text-short:eq(1)');
var qHidden3 = thisQuestion.nextAll('.text-short:eq(2)');
var hiddenInput = $('input.text', qHidden);
var hiddenInput2 = $('input.text', qHidden2);
var hiddenInput3 = $('input.text', qHidden3);
// Hide qHidden
qHidden.hide();
qHidden2.hide();
qHidden3.hide();
// Listener on the checkboxes
$('input.checkbox', thisQuestion).on('change', function(e) {
// Build an array of checked answers
var checkedAnswers = [];
$('input.checkbox:checked', thisQuestion).each(function(i) {
checkedAnswers.push($(this).nextAll('.label-text:eq(0)').text());
});
// Load the hidden question with items from the array
$(hiddenInput).val(checkedAnswers[0]);
$(hiddenInput2).val(checkedAnswers[1]);
$(hiddenInput3).val(checkedAnswers[2]);
// Fire Expression Manager
checkconditions(hiddenInput.value, hiddenInput.name, hiddenInput.type);
checkconditions(hiddenInput2.value, hiddenInput2.name, hiddenInput2.type);
checkconditions(hiddenInput3.value, hiddenInput3.name, hiddenInput3.type);
});
});
</script>