3
I want to make a listbox, where the user can select several options, but using select Multiple, I have to hold Ctrl, however this is not ideal, many people will not know it. Anyone can help?
<div class="form-group">
<label> Dias disponíveis <br />
<select name="dias" id="dias" multiple>
<option value="Segunda-Feira">Segunda-Feira</option>
<option value="Terça-Feira">Terça-Feira</option>
<option value="Quarta-Feira">Quarta-Feira</option>
<option value="Quinta-Feira">Quinta-Feira</option>
<option value="Sexta-Feira">Sexta-Feira</option>
</select>
</label>
</div>
There are several codes for this purpose, however, none of them works in all browsers, which is also not ideal. http://jsfiddle.net/xQqbR/1022/ other http://jsfiddle.net/UziTech/cjjg68dr/114/
– user60252