jsPsychSurveyMultiChoice, "required" attribute #2829
-
Hi, is there a way to make a question required, but remove the asterisk Provided a screenshot to show the difference between adding the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think the fastest way would be to just edit the
If you delete that it will not show the asterisk but still have the question required. |
Beta Was this translation helpful? Give feedback.
-
@ChristopheBossens solution will work. You can also add a CSS rule that hides the <head>
<style> span.required { display: none; } </style>
</head> |
Beta Was this translation helpful? Give feedback.
I think the fastest way would be to just edit the
plugin-survey-multi-choice.js
directly. On line 140-142 you have the following:If you delete that it will not show the asterisk but still have the question required.