/** * jspsych-survey-multi-select * a jspsych plugin for multiple choice survey questions * * documentation: docs.jspsych.org * */ jsPsych.plugins['survey-multi-select'] = (function() { var plugin = {}; plugin.info = { name: 'survey-multi-select', description: '', parameters: { questions: { type: jsPsych.plugins.parameterType.STRING, array: true, default: undefined, no_function: false, description: '' }, options: { type: jsPsych.plugins.parameterType.STRING, array: true, default: undefined, no_function: false, description: '' }, required: { type: jsPsych.plugins.parameterType.BOOL, array: true, default: false, no_function: false, description: '' }, horitzontal: { type: jsPsych.plugins.parameterType.BOOL, default: false, no_function: false, description: '' }, preamble: { type: jsPsych.plugins.parameterType.STRING, default: '', no_function: false, description: '' }, button_label: { type: jsPsych.plugins.parameterType.STRING, default: '', no_function: false, description: '' } } } plugin.trial = function(display_element, trial) { var plugin_id_name = "jspsych-survey-multi-select"; var plugin_id_selector = '#' + plugin_id_name; var _join = function( /*args*/ ) { var arr = Array.prototype.slice.call(arguments, _join.length); return arr.join(separator = '-'); } // trial defaults trial.preamble = typeof trial.preamble == 'undefined' ? "" : trial.preamble; trial.required = typeof trial.required == 'undefined' ? false : trial.required; trial.required_msg = trial.required_msg || '*please select at least one option!'; trial.horizontal = typeof trial.horizontal == 'undefined' ? false : trial.horizontal; //If button_label is empty, the browser's language will be used to determine the button label. trial.button_label = typeof trial.button_label === 'undefined' ? '' : trial.button_label; // inject CSS for trial display_element.innerHTML = ''; var cssstr = ".jspsych-survey-multi-select-question { margin-top: 2em; margin-bottom: 2em; text-align: left; }"+ ".jspsych-survey-multi-select-text span.required {color: darkred;}"+ ".jspsych-survey-multi-select-horizontal .jspsych-survey-multi-select-text { text-align: center;}"+ ".jspsych-survey-multi-select-option { line-height: 2; }"+ ".jspsych-survey-multi-select-horizontal .jspsych-survey-multi-select-option { display: inline-block; margin-left: 1em; margin-right: 1em; vertical-align: top;}"+ "label.jspsych-survey-multi-select-text input[type='checkbox'] {margin-right: 1em;}" display_element.querySelector('#jspsych-survey-multi-select-css').innerHTML = cssstr; // form element var trial_form_id = _join(plugin_id_name, "form"); display_element.innerHTML += '
'; var trial_form = display_element.querySelector("#" + trial_form_id); // show preamble text var preamble_id_name = _join(plugin_id_name, 'preamble'); trial_form.innerHTML += '' + trial.questions[i] + '
'; // create option check boxes for (var j = 0; j < trial.options[i].length; j++) { var option_id_name = _join(plugin_id_name, "option", i, j), option_id_selector = '#' + option_id_name; // add check box container display_element.querySelector(question_selector).innerHTML += ''; // add label and question text var form = document.getElementById(option_id_name) var input_name = _join(plugin_id_name, 'response', i); var input_id = _join(plugin_id_name, 'response', i, j); var label = document.createElement('label'); label.setAttribute('class', plugin_id_name+'-text'); label.innerHTML = trial.options[i][j]; label.setAttribute('for', input_id) // create checkboxes var input = document.createElement('input'); input.setAttribute('type', "checkbox"); input.setAttribute('name', input_name); input.setAttribute('id', input_id); input.setAttribute('value', trial.options[i][j]) form.appendChild(label) form.insertBefore(input, label) } } // add submit button trial_form.innerHTML +='' trial_form.innerHTML += ''; trial_form.addEventListener('submit', function(event) { event.preventDefault(); // measure response time var endTime = (new Date()).getTime(); var response_time = endTime - startTime; // create object to hold responses var matches = display_element.querySelectorAll("div." + plugin_id_name + "-question"); var question_data = {}; var has_response = []; for(var index=0; index