<div class="input-examples">
<div>
<h4>Default HTML Input Example</h4>
<div class="form-group">
<label>Random No</label>
<input type="tel" class="form-control input-date" value="123456789">
</div>
</div>
<div>
<h4>Cleave.js Formatted Input Example</h4>
<div class="form-group">
<label>Random No</label>
<input type="tel" class="form-control cleave-input-random" value="123456789">
</div>
</div>
</div>
var cleave = new Cleave('.cleave-input-random', {
delimiters: ['A', '£', '£', '$'],
blocks: [1, 1, 1, 3, 1]
});