I want to be able to display the values I get from a multi select to an empty div using jquery. For example, in the code below, how would I implement this using jquery?
<select multiple data-style="bg-white rounded-pill px-4 py-3 shadow-sm" class="selectnumber w-100 multiple searchable='Search here..'">
<option>23</option>
<option>17</option>
<option>14</option>
<option>11</option>
<option>9</option>
</select>
<div class="numberselected">
numbers selected should display here...
</div>