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.....
Page 1 / 1
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.....
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.