I have a DHCP Scope input
<input name="dhcpscope" type="number" min="1" max="254" ng-model="dhcpscope" maxlength="3" size="3" ng-required="true">
It works perfectly for DHCP scope range from 1-254, but I also want to exclude the number 111
.
How do I do that? Is there another HTML attribute that I can use?
Unless, Angular RegEx ng-pattern is the only way to go about this ...