How can I add a static text notice below a text entry box? | XM Community
Solved

How can I add a static text notice below a text entry box?

  • 17 April 2020
  • 2 replies
  • 16 views

I need to add a privacy notice for the respondents below every text entry box.
Would love some help with the code required for that.
Thanks!

icon

Best answer by rondev 17 April 2020, 22:20

View original

2 replies

Userlevel 7
Badge +22

Use below code:
var s = "privacy notice text"
jQuery(s).insertAfter("#"+this.questionId+" .InputText");

Thank you!!

Leave a Reply