Dealing with a challenge where I need an input field to accept both numbers and letters, but only allow the numbers to be increased or decreased while keeping the letters intact. Essentially, users should not be able to delete the letters. The desired functionality is illustrated in the image below:
Input field accepting numbers and letters only:
https://i.sstatic.net/1MMLJ.png
I managed to come up with a workaround by inserting <span>mm</span>
next to numbers using position: absolute;
.
Is there a more efficient or effective approach to achieving this?