Adding diff. Symbols after/before each text boxes | XM Community
Skip to main content

Hi, Is there a way to add another symbol without affecting/changing the other text boxes within a question? I want to put a Percentage Symbol after the 1st text box, without affecting the 2nd box equipped with dollar sign.
I used the code I found from the other post.
jQuery("#"+this.questionId+" .InputText").css("width","96%").before("$ ");

Change the selector. For example:
jQuery("#"+this.questionId+" .SBS3 .InputText").css("width","96%").after("%");
jQuery("#"+this.questionId+" .SBS4 .InputText").css("width","96%").before("$ ");


TomG Thank you for your expertise and sharing this custom code solution! And, thank you robi_kalinisan for confirming that the solution works 🙂


Leave a Reply