1
I have the following select, every time I select some option it reloads the page, so far so good, but I want to make sure that by clicking the option nAtualiza, it just wouldn’t update the page, is there any way? Thank you!
<select id="filtro" name="filtro" class="form-control" onchange="this.form.submit()">
<option value="">Selecione</option>
<option value="assunto"></option>
<option value="nAtualiza"></option>
</select>
You want to send data to the server but without reloading the page, that’s it?
– Sergio