I am trying to add Array drop down question with three columns.
Drop Down Texts
Columns1 - Usage
Labels under drop downs:
•Morning (i.e. before 8:00am)
•During the day (i.e. between 8:00am and 5:00pm)
•Night (i.e. after 5:00pm)
Column2 - Travel Mode
Labels under drop Downs:
•Drive
•Walk
•Other
Columsn3 - Time Taken to Travel
Labels under dorp downs
•Less than 5 minutes
•5 to 10 minutes
•10 to 15 minutes
•15 to 20 minutes
•More than 20 minutes
I need to add these DROP DOWNS for 7 different services in asked in row.
1. Service 1 <Drop down Time of the day><Travel Mode><Time taken to Travel>
2. Service 1 <Drop down Time of the day><Travel Mode><Time taken to Travel>1.
3. Service 1 <Drop down Time of the day><Travel Mode><Time taken to Travel>
so on and so forth
I am able to get the Drop downs but without the TEXT (it shows 1,2,3,...10). I am using Array number question type.
Here's the Work in Progress - jquery script
$(document).ready(function(){
$('#question3152 .answer_cell_1 option[value=1]').text('Morning (i.e. before 8:00am)');
$('#question3152 .answer_cell_1 option[value=2]').text('During the day (i.e. between 8:00am and 5:00pm)');
$('#question3152 .answer_cell_1 option[value=3]').text('Night (i.e. after 5:00pm)');
$('#question3152 .answer_cell_2 option[value=1]').text('Drive');
$('#question3152 .answer_cell_2 option[value=2]').text('Walk');
$('#question3152 .answer_cell_2 option[value=3]').text('Other');
$('#question3152 .answer_cell_3 option[value=1]').text('Less than 5 minutes');
$('#question3152 .answer_cell_3 option[value=2]').text('5 to 10 minutes');
$('#question3152 .answer_cell_3 option[value=3]').text('10 to 15 minutes');
$('#question3152 .answer_cell_3 option[value=4]').text('15 to 20 minutes');
$('#question3152 .answer_cell_3 option[value=5]').text('more than 20 minutes');
$('#question3152 .answer_cell_3 option[value=6]').text('').hide();
Can you help me to get this script working?
Thanks guys
Cheers,
Mark.