can we change the default shown text on dropdown in qualtrics eg "Select one" to "Unselected" | XM Community
Skip to main content
Solved

can we change the default shown text on dropdown in qualtrics eg "Select one" to "Unselected"

  • November 6, 2025
  • 1 reply
  • 15 views

Forum|alt.badge.img+3

can we change the default shown text on dropdown in qualtrics eg "Select one" to "Unselected"

 

 

Best answer by vgayraud

Hi,

You could try something like this and adapt if you have multiple languages.

Qualtrics.SurveyEngine.addOnReady(function () {

var spans = document.querySelectorAll('#question-' + this.questionId + ' span.rich-text');

spans.forEach(function (span) {
if (span.textContent.trim() === 'Select one') {
span.textContent = 'Unselected';
}
});
});

 

1 reply

vgayraud
QPN Level 6 ●●●●●●
Forum|alt.badge.img+58
  • QPN Level 6 ●●●●●●
  • 543 replies
  • Answer
  • November 6, 2025

Hi,

You could try something like this and adapt if you have multiple languages.

Qualtrics.SurveyEngine.addOnReady(function () {

var spans = document.querySelectorAll('#question-' + this.questionId + ' span.rich-text');

spans.forEach(function (span) {
if (span.textContent.trim() === 'Select one') {
span.textContent = 'Unselected';
}
});
});