Can you require people to resize their browser? #730
Answered
by
jodeleeuw
SaoirseConnorDesai
asked this question in
Q&A
-
Is there a way to require people to resize their browsers before continuing to the experiment? At the moment it looks like you can completely bypass the resize widget which means some participants aren't able to see the task. |
Beta Was this translation helpful? Give feedback.
Answered by
jodeleeuw
Jun 2, 2020
Replies: 1 comment
-
You can use the exclusion criteria in jsPsych.init() to require people to have a certain size browser window before proceeding. The method allows participants to resize their browser to meet the minimum size. Example: jsPsych.init({
...
exclusions: {
min_width: 800,
min_height: 600
}
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jodeleeuw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the exclusion criteria in jsPsych.init() to require people to have a certain size browser window before proceeding. The method allows participants to resize their browser to meet the minimum size.
Example: