I have a bootstrap checkbox the problem is I can't get the value of it when it is checked. The code below is my check box.
<div class="col-md-auto">
<div class="form-group">
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" id="briskbusiness" value="1">
Brisk Business
<i class="input-frame"></i>
</label>
</div>
</div>
</div>
Here is my Jquery:
$(document).on('change','#briskbusiness',function() {
if(this.checked){
alert();
}
});
I tried using click and change and still it won't show alert.
Here is the look of my check box.