Make question appear on same page | XM Community
Skip to main content
Solved

Make question appear on same page

  • December 8, 2023
  • 3 replies
  • 1501 views

Forum|alt.badge.img+3
  • Level 3 ●●●
  • 67 replies

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 ?” 

 

 

Best answer by InessaG

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.

3 replies

InessaG
Level 5 ●●●●●
Forum|alt.badge.img+19
  • Level 5 ●●●●●
  • 416 replies
  • Answer
  • December 8, 2023

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.


Forum|alt.badge.img+3
  • Author
  • Level 3 ●●●
  • 67 replies
  • December 8, 2023

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);
});
});

 


InessaG
Level 5 ●●●●●
Forum|alt.badge.img+19
  • Level 5 ●●●●●
  • 416 replies
  • December 8, 2023

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