0
Staff I need the select 2 for the withdrawal unit to be enabled only if the select 1 option equals "Withdrawal". Can you help me?
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<input type="text" name="input" id="input" disabled>
<br><br>
<label>Selecione a opção de recebimento do pedido</label>
<select id="options" onchange="verifica(this.value)">
<option value="2">1 - Delivery</option>
<option value="3">2 - Retirada</option>
</select>
<br>
<br>
<label>Selecione a unidade que irá retirar o do pedido</label>
<select id="options" onchange="verifica(this.value)">
<option value="2">1 - Unidade </option>
<option value="3">2 - Unidade</option>
</select>
</body>
</html>
Cool! It can also involve select 2 in a div and control the display... it is more user friendly...
– Duda Gervásio
Is it a question or statement? hehe
– Rogerio Santos
Rss statement with suggested improvement, for our friend Matheus try to make ;)
– Duda Gervásio
But apparently he’s away hehe
– Duda Gervásio
Shoow. Thank you very much, I managed to do with your help.
– user195714