Make question appear on same page | XM Community
Solved

Make question appear on same page

  • 8 December 2023
  • 3 replies
  • 406 views

Userlevel 3
Badge +3

Hi everyone, 

Is there anyway I can make a question appear as the respondent is answering the survey, to give you an exemple (see question below) if a person rates 1 star I want a text entry question to appear on this same page (see black arrow) asking “why ?” 

 

 

icon

Best answer by InessaG 8 December 2023, 16:43

View original

3 replies

Userlevel 7
Badge +18

Yes, just add display logic onto the second question and select “In Page” option. Logic should check if any of the question asnwers are selected.

Userlevel 3
Badge +3

Hello @InessaG thank you very much for your answer.

Do you know if there is any way to reduce space here above de stars question (see below) I don’t need the question text. 

And FYI I already have JavaScript in this question to display label above the stars : 

Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" tr").each(function() {
var row = jQuery(this);
var th = row.before("<tr></tr>").find("th").attr("colspan","4").css("text-align","left");
row.prev("tr").append(th);
});
});

 

Userlevel 7
Badge +18

Sorry, coding is not my specialty. May be able to do it through CSS.

Leave a Reply