Input and select box | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 Resposta
+ 4
You can use js for itšŸ˜€
18th Apr 2021, 6:09 PM
ՍÕøֆի ՄÕøÕ¾Õ½Õ„Õ½ÕµÕ”Õ¶