I want to show the dropdown list upward each time regardless the enough space below.
How to achieve it? What is the key point to do this?
UPDATE
Here is how I initialize Select2:
$("select[name=ingredients]").select2();
HTML side:
<select name="ingredients" multiple class="populate select2-offscreen form-control" tabindex="-1" style="width: 100%;">
<optgroup label="Diğer">
<option value="0">Un</option>
<option value="1">Şeker</option>
<option value="2">Tuz</option>
</optgroup>
</select>