How can you prefill an input box with 0'00" Then as the user starts typing it prefills in those 0's? like 12'02". I want the left side of the " ' " to be able to reach 2000 and the right side of the " ' " to only be able to reach 11.
<label for="ft">Feet:</label>
<input type="text" name="ft" id="ft">
I am not sure if I would need a RegEx or a mask or what... Any advice would be greatly appreciated!
Maybe RegEx?
"[1-2000]'(0[0-9]|1[0-1])"""
Or something like that?