JSFiddle - React, Tailwind, and code Playground
by painotpi
HTML
<select id="ListProductCategory"></select>
JavaScript
$('#ListProductCategory').append($('<option>', {
value: "0",
text: "Select Category"
}));
by painotpi
<select id="ListProductCategory"></select>
$('#ListProductCategory').append($('<option>', {
value: "0",
text: "Select Category"
}));