I need to select the multiple values from the dropdown.I am using bootstrap css.
This is my dropdown code:
<select multiple class="dropdown-menu">
<option value="monday">Monday</option>
<option value="tuesday">Tuesday</option>
<option value="wednesday">Wednesday</option>
<option value="thursday">Thursday</option>
<option value="friday">Friday</option>
<option value="saturday">Saturday</option>
<option value="sunday">Sunday</option>
</select>
By using the above code i can select multiple options by using CTRL key,but i don't want use ctrl key and i need to select multiple values.
Is it possible to do that with jquery,javascript?
One more thing like Can i select not more than two or three values is it possible?
Many thanks in advance....