JSFiddle - React, Tailwind, and code Playground

by Ahmad SM

HTML

<body>
<table>
<th>Issued Type</th>
<td>
<select type="button" Onchange="demoDisplay()">
<option value="">Choose</option>
<option value="1">WH1 to WH2</option>
</select>
</td>
<tr>
<th>From</th>
<td>
<input type="text" name="from" id="from">
<label class="radio-inline"><input type="radio" name="from" value="Warehouse1">Warehouse 1</label>
</td>
</tr>
</table>
<script>
function demoDisplay() {
    document.getElementById("from").style.display = "none";
}
</script>
</body>