I have an input field and I want to give this field a validation that accepts only hex numbers. So it should accept numbers from 0 to 9 and letters from A to F.
Here is my input field:
<input type="text" class="form-control" tabindex="9" maxlength="2">
How do you think I can achieve this?