xxxxxxxxxx
1
<select class="mdb-select md-form" name="consumeLocation" id="consumeLocation">
2
<option value="" disabled selected>Consumed from...</option>
3
<option value="2">One</option>
4
<option value="4">Two</option>
5
<option value="6">Three</option>
6
</select>
7
8
<select class="mdb-select md-form" name="consumeQuantity" id="consumeQuantity">
9
<option value="" disabled selected>Consumed quantity...</option>
10
</select>
1
1
xxxxxxxxxx
1
// Material Select Initialization
2
$(document).ready(function() {
3
$('.mdb-select').materialSelect();
4
5
$('#consumeLocation').change(function(){
6
$('#consumeQuantity').materialSelect("destroy");
7
$("#consumeQuantity").removeAttr("disabled");
8
9
var maxQty = $('#consumeLocation').val();
10
var i = 0;
11
var textQty = "";
12
13
for (i = 1; i <= maxQty; i++) {
14
textQty += "<option value="+ i + ">" + i + "</option>";
15
}
16
17
document.getElementById("consumeQuantity").innerHTML = textQty;
18
19
$("#consumeQuantity").materialSelect();
20
});
21
});
22
Console errors: 0