Hi everyone,
I wonder if you can help me:
I need to be able to get rid of *just* the text entry bit of a multiple choice question (the bit where you'd ordinarily put the question), but *not* the multiple choices. The reason for this is that I'm displaying pictures and I want more room on participants' screens for the pictures. So just hiding the question wouldn't help; I actually need the text entry bit to disappear so that it isn't using space. (The question is the same for every photo, so participants are told the question at the start; in case this sounds odd).
I've tried the following code (which I got from a few previous posts on the community--thanks so much to the people who put this up):
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId).hide()
});
But that just gets rid of everything: question and responses.
Does anyone have any thoughts on how I'd do this?
Thanks so much for your help in advance with this. All you wizards who help others out are magic.
Ryan
Page 1 / 1
RPD , You can use Text/Graphic question type for this.
Hi Shashi,
Thanks for this. I'm not sure that that would solve the problem though--that would get rid of the mutliple choices too.
Thanks for trying to help me out though. :)
RPD ,
Use this:
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .QuestionText").hide();
});
TomG That's wonderful! Thanks so much for helping me!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.