
Best answer by vgayraud
Hi,
You can add this to your question’s custom javascript:
Qualtrics.SurveyEngine.addOnReady(function () {
const ulElement = document.querySelector('#' + this.questionId + ' .numbers') || document.querySelector('#question-' + this.questionId + ' .numbers');
if (ulElement) {
const listItems = ulElement.querySelectorAll('li');
listItems.forEach(li => {
li.textContent = '$' + li.textContent.trim();
});
}
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.