Hello. I have the following code:
<select id="idselect" class="ui-corner-all ui-widget-content" multiple="multiple" name="idPosto" style="padding: 3px 4px;">
<option value="1"></option>
<option value="2"></option>
<option value="3"></option>
<option value="4"></option>
</select>
I need every concatenation in the href
of the "idselect[]"+valorclicado
link to be clicked by the client.
<a href="selecionados.php?precisoqueconcateneaqui"></a>
Assuming that the client select option 2 and 3 the link that would form would be this:
meusite.com/selecionados.php?idselect[]=2&idselect[]=3
I prefer it to be pure javascript, but if you know anything about jQuery it will also help a lot.