I want to validate if the input type number crosses the range.
<input type="number" min="-10" max="10" required="true" message="you can give score -10 to +10 only">
I tried required = true but not working i want to show if the value crosses the range show message like you can give score -10 to +10 only
I want to allow while entering itself, not when submitting.
How can i do that..?