1
Beauty guys. I have three selectbox and after choosing in the first Select box the option "Movies", I would like to disable the other two selectbox and modify its text to "N/A":
<select id="categoria" name="categoria">
<option value="1">Animes</option>
<option value="2">Séries</option>
<option value="3">Filmes</option>
</select>
<select id="status" name="status">
<option value="1">Completa(o)</option>
<option value="2">Em exibição</option>
</select>
<select id="episodios" name="episodios">
<option value="02">02 Episódios</option>
<option value="03">03 Episódios</option>
<option value="04">04 Episódios</option>
<option value="05">....</option>
</select>
Thanks in advance.
JS pure or jQuery, or whatever?
– Sam
The simplest. The site I’m doing is very simple.
– Márcio Fernandes