Hi!
If I write the word car in the textarea, then checkbox is ON.
Remove car then checkbox is empty.
Is possible?
Paste must also work like Car Bus
<body>
<form>
<textarea name="type" rows="5" cols="35"></textarea><br>
<input type="checkbox" value="Car"><label>Car</label><br>
<input type="checkbox" value="Bus"><label>Bus</label><br>
<input type="checkbox" value="3"><label>3</label><br>
<input type="checkbox" value="4"><label>4</label>
</form>
</body>