JSFiddle - React, Tailwind, and code Playground

by rfigueiredo

HTML

<form name="testform" onsubmit="alert('submit done');return false;">
<label>if you change value manualy only submit if value len is higher than 15 chars</label><br>
<input type="text" name="valuefld" required minlength="15">
<br>
<input type="submit" value="submit form">
</form>
<br><br>
<input type="button" value="click will change value of the field and break the validation" onclick="testform.valuefld.value='dont metter'">