Each sub-question of a multiple options (checkbox) question needs to be accessed separately using {INSERTANS} with the sub-question
code. If checked, the {INSERTANS} tag returns the sub-question
value, otherwise it will return "No answer".
So, given the following multiple options question:
If "Red" were selected, {INSERTANS:
96687X
70X
7741} would return "RED".
So to continue your example, if I had a radio question on a subsequent page with the following IDs:
The code may be:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var checkBox1 = '{INSERTANS:96687X70X7741}';
if(checkBox1 == 'Red') {
$('#answer96687X71X7801').attr('checked', true);
}
else {
$('#answer96687X71X7802').attr('checked', true);
}
});
</script>