I want to know how I can make a with multiple select in ruby on rails.
for example:
I have this
<% b.label :question %>
<select multiple class="question">
<option value="Dog">Dog</option>
<option value="cat bad">Cat</option>
<option value="Rabbit">Rabbit</option>
</select>
the idea is like to create a field but I don't want the user write the answer, only a I want they choose the answer or multiple answer if the want.
Thank You so much.