Gostaria de pegar o valor dos Options de um Select ... alguém sabe como posso fazer isso ?
<select name = 'func' onChange = "SelectFunc()">
<option value = '1'>Todas</option>
<option value = 'Adido'>Adido</option>
<option value = '1'>Adj. de Adido</option
</select>
function SelectFunc(){
var func = document.getElementsByName("func");
alert(func);
if (func == "Adido"){
$('#func').fadeIn(2000);
}
}
Question
Sérgio Murillo
Gostaria de pegar o valor dos Options de um Select ... alguém sabe como posso fazer isso ?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.