Hello
@Clin ,
Paste the following code in the js(onReady) of Text entry question
jQuery("[id='QR~"+this.questionId+"']").keyup(function(){
var k=jQuery(this).val().replace(/#/g, "");
jQuery(this).val(k+"#");
});
The above code will append '#' at the end of user input
Hi
@Shashi
Thank you so much for your help.
Is there a way I can have the #xxx appear at the end of a multiline text entry box, even before the participant starts typing? and it should stay while he/she is typing.
Hello
@Clin ,
Paste the following code in the js(onReady) of Text entry question
jQuery("[id='QR~"+this.questionId+"']").val("#xxx");
jQuery("[id='QR~"+this.questionId+"']").keyup(function(){
var k=jQuery(this).val().replace(/#xxx/g, "");
jQuery(this).val(k+"#xxx");
});