Good evening, how do I submit a form with select without the submit button? For example, to create a filter that when you select the option it automatically submits the form without having the submit button.
My form looks like this:
<form class="form-inline left" method="POST">
<div class="form-group">
<label for="listar">Listar por</label>
<select id="filtro" name="filtro" class="form-control">
<option value="professor">Professor</option>
<option value="assunto">Assunto</option>
</select>
</div>
</form>