Input and select box | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Input and select box

I want to have a dependent numeric input. This numeric input depends on a select box that creates a specific numeric range for the input by selecting each option. For example: if we select option2, the numeric input will be min = 20 and max = 50!, if we select option3, the numeric input will be min = 10 and max = 30!. How can such a feature be created? Here's what I've tried: <form> <select id="selbox"> <option value="option1">option1</option> <option value="option2">option2</option> <option value="option3">option3</option> </select> <input type="number" id="num"> <button>click</button> </form>

18th Apr 2021, 4:49 PM
abz
abz - avatar
1 Answer
+ 4
You can use js for it😀
18th Apr 2021, 6:09 PM
Սոֆի Մովսեսյան
Սոֆի Մովսեսյան - avatar