Why isn't the required attribute working in a textarea?

Adding required to a text area does not work

<textarea type="text" rows="20" cols="40" id="custom_input_large" name="properties[{{ current_variant.title }}]"  form="{{ product_form_id }}" required> </textarea>

But the same with an input text if it works

<input name="properties[{{ current_variant.title }}]" form="{{ product_form_id }}" required>

Hello @FedeMedina ,

There is a empty space inside the textarea, remove it.


1 Like

ily :heart: