JQuery: Create n selects after choosing it in the select box
- by Tom
I have this select:
<select name="main">
<option value="2">2s</option>
<option value="3">3s</option>
<option value="5">5s</option>
</select>
How do I make, that after choosing 2s, 2 selects would be created:
<select name="select1">
<option value="0">0</option>
<option…