Validate an ISSN (International Standard Serial Number).
Option | HTML attribute | Type | Description |
---|---|---|---|
message |
data-bv-issn-message |
String | The error message |
ISSN | Result |
---|---|
0378-5955 | |
0024-9319 | |
0032-1478 | |
0032-147X |
<form id="issnForm" class="form-horizontal">
<div class="form-group">
<label class="col-lg-3 control-label">ISSN</label>
<div class="col-lg-5">
<input type="text" class="form-control" name="issn" />
</div>
</div>
</form>
$(document).ready(function() {
$('#issnForm').bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
issn: {
validators: {
issn: {
message: 'The value is not valid ISSN'
}
}
}
}
});
});
The following validators might be useful to you: