How to save CheckBox Value in a variable
The jQuery syntax is exactly the same as you are already using...
$('#IsActive').val()
The problem is your checkbox design does not have a value attribute.
<input type="checkbox" class="form-check-input" id="IsActive" name="IsActive" value="MyValue">
Are you actually trying to detect if the IsActive is checked?