diff --git a/examples/jspsych-text.html b/examples/jspsych-text.html index 0baca960..64800f98 100644 --- a/examples/jspsych-text.html +++ b/examples/jspsych-text.html @@ -28,7 +28,12 @@ jsPsych.init({ display_element: $('#jspsych_target'), - experiment_structure: [text_block] + experiment_structure: [text_block], + on_finish:function(data){ + $('#jspsych_target').append("
",{ + html:(JSON.stringify(data,undefined,2)) + }); + } });