I have two radio buttons and one Bootstrap-select Dropdown.I want to enable/disable dropdown using javascript with the help of two radio buttons.
My Html Code is Given Below:
JavaScript
x
54
54
1
<div class="container" style="margin-top: 5px;background-color: wheat;">
2
3
<div class="card" style="background-color: white;margin: 1em">
4
<!--<div class="card-header"></div>-->
5
6
<div class="card-body">
7
8
9
<div class="row">
10
<div class="col-lg-2">
11
<label style="margin-top: 1.2em;margin-left: 1em">Type</label>
12
</div>
13
<div class="row" >
14
<div class="col-sm-1">
15
<div class="form-check" style="margin-top: 1.1em;margin-left: 1em">
16
<label class="form-check-label">
17
<input type="radio" class="form-check-input" name="rbType" id="typeNew" value="enable" >New
18
</label>
19
</div>
20
</div>
21
<div class="col-sm-2">
22
<div class="form-check" style="margin-top: 1.1em;margin-left: 1em">
23
<label class="form-check-label">
24
<input type="radio" class="form-check-input" name="rbType" id="typeVisisting" value="disable">Visiting
25
</label>
26
</div>
27
</div>
28
</div>
29
</div>
30
<div class="row" >
31
<div class="col-lg-2">
32
<label style="margin-top: 1.2em;margin-left: 1em" for="selectCustomer" >Customer Name</label>
33
</div>
34
<div class="col-lg-10">
35
<div class="form-group" style="margin-top: .5em;margin-right: 1em">
36
<select class=" form-control input-lg" data-live-search="true" title="-- Select a Customer --" name="selectCustomer" id="selectCustomer" >
37
<!--<option value="none">-- Select a Customer --</option>-->
38
39
@foreach($customers as $customer)
40
41
<option value="{{$customer->customer_id}}">{{$customer->customer_id}} {{$customer->customer_name}}</option>
42
43
@endforeach
44
</select>
45
</div>
46
47
48
49
</div>
50
</div>
51
52
</div>
53
</div>
54
Advertisement
Answer
Add the jquery below
JavaScript
1
9
1
$('input[name="rbType"]').change(function(){
2
if(this.value == "enable"){
3
$('#selectCustomer').removeAttr('disabled')
4
}
5
if(this.value == "disable"){
6
$('#selectCustomer').attr('disabled','true')
7
}
8
})
9