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 cancel on the alert that is issued by JS?