Preview:
<div class="text-center">
              <input class="btn btn-2 submitBtn" type="submit" id="quoteSubmit" name="quote" value="Submit Request"  disabled="disabled">
            </div>



            <div class="col-md-12 mb-3">
            <div class="form-group" style="margin-left: 25px;">
              <input type="checkbox" class="form-check-input" id="click" required="required">
              <label class="form-check-label" for="click">by clicking the submit button below you will be giving permission to contact via SMS regarding your digital services</label>
            </div>
          </div>







$(document).ready(function() {
    // Attach a change event listener to the checkbox
        $(document).on('change', "#click", function(e) {
            console.log('clicked');
            // Check if the checkbox is checked
            if ($(this).is(':checked')) {
                // If checked, enable the submit button
                $('.submitform').removeAttr('disabled');
                console.log('disabled');
            } else {
                // If not checked, disable the submit button
                $('.submitform').attr('disabled', 'disabled');
                console.log('enabled');
            }
        });
    });
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter