Javascript to change question background color | XM Community
Solved

Javascript to change question background color

  • 24 May 2023
  • 2 replies
  • 255 views

Userlevel 2
Badge +2

Would anyone be able to share JavaScript code to change the background color of individual questions, but leave the background color of the choices as is? Can’t be applied to the whole survey, just certain individual questions. I have a specific hex code, not a color name. Trying to mimic the idea below…

 

 

icon

Best answer by Tom_1842 24 May 2023, 17:17

View original

2 replies

Userlevel 7
Badge +27

To change just the background color of the Question Text and change font color to white, you can try the below JavaScript:

jQuery("#"+this.questionId+" .QuestionText").css({"background-color":"#A20A35","color":"#FFFFFF"});

 

Userlevel 2
Badge +2

This worked! Thank you so much!

Leave a Reply