JSFiddle - React, Tailwind, and code Playground
by Ben Schnell
HTML
<div id="selects">
</div>
<button id="addSelect">
add
</button>
JavaScript
const addSelect = document.getElementById('addSelect');
const selects
addSelect.addEventListener('click', function(e) {
quantity(100);
})
function quantity(amount){
var select = document.getElementById('quantiti');
for (var i = 0; i < amount; i++){
select.options[select.options.length] = new Option(i+1, i);
}
}