Really simple question, but couldn't find the answer here on forum.
Let's say, I have a text field, I've set its validation to "Required" and "Number".
Unfortunately, forum doesn't allow to upload images, so, here is screenshot:
https://snipboard.io/HOAkF3.jpg
How can I set its "max" value?
so that resulting code would look like:
?
Let's say, I have a text field, I've set its validation to "Required" and "Number".
Unfortunately, forum doesn't allow to upload images, so, here is screenshot:
https://snipboard.io/HOAkF3.jpg
How can I set its "max" value?
so that resulting code would look like:
<label for="quantity">Quantity (between 1 and 5):</label>sample taken from: https://www.w3schools.com/tags/att_input_max.asp
<input type="number" id="quantity" name="quantity" min="1" max="5">
?