Is there any way to append text before text entry | XM Community
Skip to main content

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.....

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


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


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 ')


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


Leave a Reply