Comments are text in the survey code that is ignored by the code parser. Use comments to temporarily disable lines of code without deleting them.
1. What is your favorite color?
type: radio
# Waiting for client confirmation on the final option list.
1. Red
2. Blue
#3. Yellow
Details
- To disable individual lines of code, place the
#
at beginning of the line, as shown above. - To disable multiple lines of continuous code, wrap the lines withÂ
/*
and*/
.
Tip! Comments in this article are for internal programmers to leave notes for team collaboration. For client collaboration, refer to Viewing feedback log in Testmode and Communicating with IntelliBuilder.
Additional examples
Disabling multiple lines of code
In the example below, all lines between the /*
and */
will be ignored by the parser.
/*
This question is not finished yet. Still uncertain about the structure.
1. Where did you buy your pet products?
1. Yes
2. No
set list: STORES
1. waiting for list
*/
Comments
0 comments
Please sign in to leave a comment.