1
JS:
function alterarStatusFunction(val){
if(val =="aprovado"){
if (confirm('Tem certeza que deseja alterar o status dessa transação para APROVADO?')) {
document.formtransacoes.submit();
} else {
return false;
}
}
}
HTML:
<select style="width:200px" onchange="alterarStatusFunction(this.options[this.selectedIndex].title);" name="alteraStatus">
<option selected="selected" disabled="disabled">- Opções -</option>
<option title="aprovado" value="aprovado">Marcar como APROVADO</option>
</select>
How can I make the option reset to the first option when the person clicks to cancel on Alert which is issued by the JS?
$("option").filter(function() {
 return $(this).text() =='- Opções -';
}).prop("selected", true);
, tried so?– Marconi
Behold: How to select an option in <select> via text using jQuery?
– Marconi