Validate a CUSIP number.
Option | HTML attribute | Type | Description |
---|---|---|---|
message |
data-bv-cusip-message |
String | The error message |
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>
$(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'
}
}
}
}
});
});
The following validators might be useful to you: