Required response answer in Mechanical Turk

66 Views Asked by At

I am designing my task in MTurk and have tried to create a field with the required answer. That is my code:

<crowd-input name="Comment" placeholder="Explain why" required></crowd-input>

The problem is that submitting the task without filling any text in the sandbox allowed me to do so. I want this text box to be required. Any suggestions?

1

There are 1 best solutions below

0
NivB On

I found solution:

<input type="text" placeholder="Explain why" required></input>