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

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';
}
});
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.