0
I have a select
<select id="selecao" name="tipoLocal">
<option value="casa">Casa</option>
<option value="predio">Predio</option>
<option value="predio">Terreno</option>
</select>
It is possible in jquery to reload a page by passing as parameter as soon as you select an item from select, without having to click any button, only when selecting an option you already load the url "www.exemplo.com/{parameter}", where this url passes to a controller in java? How to do?
Well I don’t know if I got it right, you want to call a controller when selecting some combo item?
– Al Unser Albuquerque