Hi,
depends on the content of the groups.
Usually you set the relevance equation of this group to something that is always FALSE. 0 is sufficient, as this means FALSE in php.
But if you are the third person who deals with this choice survey, there are javascript function in this first group.
If you hide the group they will not work.
You have to hide the single questions in the javascript with
$(thisQuestion).hide();
here
Code:
}
$(thisQuestion).hide();
});
// A function to shuffle arrays
Usually if you hide ALL questions in a group by "Always hide this question: ON" the entire group is not displayed.
In your case the questions are only hidden by javascript; so the group itself will be displayed, more or less as an empty frame and a "next" button.
Therefore you have to include at least one visible question, as a "text display" with some explanations.
These are the things you have to consider.
A group is hidden exactly like a question : relevance equation == FALSE
But it is different if there is javascript.
Easy to understand.
The relevance equation hides the question while creating it on the server, so the javascript that runs in the client's browser will not be existing.
And the other way: If the javascript hides the question in the browser the rest of the page (the group) will be still existing.
Joffm