I have a series of questions. They are strings. Call them Question1, Question2, Question3, etc.
I want to write script to generate the QID and display stuff. Example:
<script type="text/javascript" charset="utf-8">
var i = 1;
var theQID = "{Question" + i + ".answer}";
document.write(theQID);
</script>
I also tried
<script type="text/javascript" charset="utf-8">
var i = 1;
var theQID = "{that.Question" + i + ".answer}";
document.write(theQID);
</script>
Both of these codes to not display anything. But this code DOES display something
<script type="text/javascript" charset="utf-8">
document.write({Question1});
</script>
Can someone help me to know what is going on with this? Is this possible to do? Or do you always have to input the QID literally, and not use text manipulation with variables? Thanks