I have this field at my form for calculating Value Added Tax:
<form method="post" action="" id="form-product">
    <div class="col-md-4">
        <div class="form-check">
            <input class="form-check-input" type="radio" id="vat" name="vat" value="on">
            <label class="form-check-label">
                Calculate VAT 
            </label>
        </div>
        <div class="form-check">
            <input class="form-check-input" type="radio" id="vat" name="vat" value="off" checked>
            <label class="form-check-label">
                Do not calculate VAT
            </label>
        </div>
    </div> 
</form>
Now within jQuery, I want to check that if the radio button is set to the value on, do the calculation.
So how can I do that with jQuery.
I would really appreciate any idea or suggestion from you guys...
Thanks in advance.
