Validators / cusip

Edit on Github

Validate a CUSIP.

Option Equivalent HTML attribute Type Description
message data-bv-cusip-message String The error message

Example

CUSIP Result
037833100
931142103
14149YAR8
126650BG6
31430F200
022615AC2
<form id="cusipForm" class="form-horizontal">
    <div class="form-group">
        <label class="col-lg-3 control-label">CUSIP</label>
        <div class="col-lg-5">
            <input type="text" class="form-control" name="cusip" />
        </div>
    </div>
</form>
<script>
$(document).ready(function() {
    $('#cusipForm').bootstrapValidator({
        feedbackIcons: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            cusip: {
                validators: {
                    cusip: {
                        message: 'The value is not valid CUSIP'
                    }
                }
            }
        }
    });
});
</script>

Comments

If you want to report a bug, please submit the issue on Github. Do NOT post the issue here.

For a general question or feedback, use the form below.