I have a form where the user, when filling in, automatically appears in a div, as it happens here on the site. In text field I get it normally, but how would I get it from a combobox?
See below the text field code that I started to do, but I need it for the combobox:
HTML
<input name="Nome" id="nome" type="text" class="md-form-control responsavel required">
<!-- Aqui mostra o que foi digitado no campo acima -->
<p id="paragrafonome"></p>
The combobox I need to get is this:
<select name="Estado" id="estado">
<option value="RJ">Rio de Janeiro</option>
<option value="SP">São Paulo</option>
<option value="MG">Minas Gerais</option>
</select>
<p id="paragrafoestado"></p>
JQuery
// campo texto
var nome = document.querySelector('#nome');
var paragrafoNome = document.querySelector('#paragrafonome');
nome.addEventListener('keyup', function () {
paragrafoNome.innerHTML = "<div align='left' style='padding: 10px'><h3>" + nome.value + "</h3></div>";
});
// Combobox
var estado = document.querySelector('#estado');
var paragrafoEstado = document.querySelector('#paragrafoestado');
estado.addEventListener('keyup', function () {
paragrafoEstado.innerHTML = "<div align='left' style='padding: 10px'><h3>" + estado.value + "</h3></div>";
});