Is there any way to append text before text entry | XM Community
Solved

Is there any way to append text before text entry

  • 11 August 2020
  • 4 replies
  • 29 views

Userlevel 2
Badge

Is there any way to append text before text entry. Please let me know how to do it because i am new in qualtrics. and i am not so familiar in javascript or jquery.....

icon

Best answer by SurajK 12 August 2020, 16:46

View original

4 replies

Userlevel 5
Badge +4

Try this one,
jQuery('input[type="text"]').before('Your text')

Userlevel 2
Badge

Hi SurajK
First of all thanks for your reply but i used this code the text is appending to all questions refer below screenshot.....
image.png

Userlevel 5
Badge +4

If you want to add the text for first box then use eq(0) and for second use eq(1), like below,
jQuery('input[type="text"]').eq(0).before('Your text ')
for second,
jQuery('input[type="text"]').eq(1).before('Your text ')

Userlevel 2
Badge

SurajK Thanks it works........😊

Leave a Reply