Hello,
I was wondering if you know how to customize piped-text responses in Qualtrics so that they appear in uppercase.
e.g. if I am asking to provide some initials which I will pipe into questions later, how can I make them always appear in uppercase in the following piped-text questions?
Thanks
Page 1 / 1
Put a `<span>` tag with an id where you want the pipe, then use JavaScript to populate it:
```
<span id="mySpanId"></span>
```
Then:
```
jQuery("#mySpanId").html("${q://QID1/ChoiceEntryText}".toUpperCase());
```
```
<span id="mySpanId"></span>
```
Then:
```
jQuery("#mySpanId").html("${q://QID1/ChoiceEntryText}".toUpperCase());
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.