Does anyone have a way with javascript to preselect the first choice of a combo box when the question loads? I have a list with labels 0-15 and tried using the SSI_SetSelect in javascript but that doesn't seem to work with a combo box. My client would like it to default to the first choice.
This is what I tried:
<script type="text/javascript">
{
SSI_SetSelect("Q13A_r1_c1_1", true);
SSI_SetSelect("Q13A_r2_c1_1", true);
SSI_SetSelect("Q13A_r3_c1_1", true);
SSI_SetSelect("Q13A_r4_c1_1", true);
}
</script>