I want to add a $ sign in front of my Cost column of text boxes, but not Quantity. How do I make that happen?

I want to add a $ sign in front of my Cost column of text boxes, but not Quantity. How do I make that happen?
Best answer by omkarkewat
Hey
Qualtrics.SurveyEngine.addOnload(function() {
// Get all text input fields within the question container
var inputs = $(this.getQuestionContainer()).select('input[type="text"]');
// Loop through each text input field, but only on odd indices (1,3,5, ...)
for (var i = 1; i < inputs.length; i += 2) {
var input = inputs[i];
// Insert a dollar sign ('$ ') before each selected text input field
$(input).insert({ before: '$ ' });
}
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.