I need to grab the options of that select materialize that are practically a checkbox to be able to add them to a collapsible so that they are visualized, but I need to know how to get those "selected options" with jquery or if it is with javascript, there is no problem either
<div class="input-field col s5 editable" >
<select multiple>
<option value="" disabled selected></option>
<option value="1">codo</option>
<option value="2">hombros</option>
<option value="3">rodillas</option>
<option value="4">pies</option>
</select>
</div>