jsPsych/examples/jspsych-survey-likert.html
2017-07-23 13:04:39 -04:00

28 lines
648 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-survey-likert.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
</head>
<body></body>
<script>
var scale = ["Strongly Disagree", "Disagree", "Neutral", "Agree", "Strongly Agree"];
var likert_trial = {
type: 'survey-likert',
nested: [{question: "I like vegetables.", labels: scale}, {question: "I like fruit.", labels: scale}],
required: true,
};
jsPsych.init({
timeline: [likert_trial],
on_finish: function() { jsPsych.data.displayData(); }
});
</script>
</html>