Like this user, I'm piping selected choices from an initial question into a second one (after a page break) as follows:
Why do you think this study measured ${q://QID28/ChoiceGroup/SelectedChoices} intake?
Because the options given in the initial question began with uppercase characters, the second question renders as, for example:
Why do you think this study measured Fruit intake?
but I want
Why do you think this study measured fruit intake?
Per the answer to the previous user's question, I have the following JS in the second question:
Qualtrics.SurveyEngine.addOnload(function() { jQuery("span.lowercase").html("${q://QID28/ChoiceGroup/SelectedChoices}".toLowerCase()); });
and the following HTML:
Why do you think this study measured ${q://QID28/ChoiceGroup/SelectedChoices} intake?
but the piped text is still not lowercase.
Based on this other related question, I also tried adding the following to the custom CSS in the survey's Look & Feel:
span.lowercase { text-transform: lowercase; }
and this also did not work. Any suggestions?