how to customize piped-text responses | XM Community
Solved

how to customize piped-text responses

  • 15 June 2018
  • 1 reply
  • 115 views

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
icon

Best answer by TomG 15 June 2018, 14:51

View original

1 reply

Userlevel 7
Badge +27
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());
```

Leave a Reply