Survey Likert plugin autocomplete parameter #2952
-
Dear all, Could you help me with the autocomplete parameter for the survey-Likert plugin? I am doing an experiment with bilinguals where I ask them to evaluate the various parameters of the word using the Likert scale. Is it possible to do it using the autocomplete parameter? And if yes, how? I searched, but I couldn't find the answer. Thank you! I want the slide looks like this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think the autocomplete parameter has a different purpose than what you need (see this link: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete). The behavior it enables is what you typically see on address forms where you fill out your name and it will automatically complete your address as well. To achieve what you need, you can adjust the code of the plugin if you are comfortable with that (if not let me know and I can send an adjusted plugin file). If you go to the section where the options string for the radio input field is defined, add the following code after line 150 (I am assuming jsPsych 7.2 btw): This will add the checked attribute to the first radio button that is generated. From an experimental point of view, don't you think it is better to have the participant select this option explicitly for each word? Else they might simply click the further button to complete the page since all the options have already been set for them? |
Beta Was this translation helpful? Give feedback.
I think the autocomplete parameter has a different purpose than what you need (see this link: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete). The behavior it enables is what you typically see on address forms where you fill out your name and it will automatically complete your address as well.
To achieve what you need, you can adjust the code of the plugin if you are comfortable with that (if not let me know and I can send an adjusted plugin file). If you go to the section where the options string for the radio input field is defined, add the following code after line 150 (I am assuming jsPsych 7.2 btw):
This will add the checked attribute to the first radio b…