/** * jspsych-survey-text * a jspsych plugin for free response survey questions * * Josh de Leeuw * * documentation: docs.jspsych.org * */ jsPsych.plugins['survey-text'] = (function() { var plugin = {}; plugin.info = { name: 'survey-text', description: '', parameters: { questions: { type: [jsPsych.plugins.parameterType.STRING], array: true, default: undefined, no_function: false, description: '' }, premable: { type: [jsPsych.plugins.parameterType.STRING], default: '', no_function: false, description: '' }, rows: { type: [jsPsych.plugins.parameterType.INT], array: true, default: 1, no_function: false, description: '' }, columns: { type: [jsPsych.plugins.parameterType.INT], array: true, default: 40, no_function: false, description: '' } } } plugin.trial = function(display_element, trial) { trial.preamble = typeof trial.preamble == 'undefined' ? "" : trial.preamble; if (typeof trial.rows == 'undefined') { trial.rows = []; for (var i = 0; i < trial.questions.length; i++) { trial.rows.push(1); } } if (typeof trial.columns == 'undefined') { trial.columns = []; for (var i = 0; i < trial.questions.length; i++) { trial.columns.push(40); } } // if any trial variables are functions // this evaluates the function and replaces // it with the output of the function trial = jsPsych.pluginAPI.evaluateFunctionParameters(trial); // show preamble text display_element.innerHTML += '
'+trial.preamble+'
'; // add questions for (var i = 0; i < trial.questions.length; i++) { display_element.innerHTML += '
'+ '

' + trial.questions[i] + '

'+ ''+ '
'; } // add submit button display_element.innerHTML += ''; display_element.querySelector('#jspsych-survey-text-next').attachEventListener('click', function() { // measure response time var endTime = (new Date()).getTime(); var response_time = endTime - startTime; // create object to hold responses var question_data = {}; var matches = display_element.querySelectorAll('div.jspsych-survey-text-question'); for(var index=0; index