I am new to jQuery so this is probably very simple but I can't seem to find an example with using sortable with Select Options. Can it be done?
$(document).ready(function(){
$("#list").sortable({})
});
<select id='list' size='8'>
<option value="0">Option 0</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
I'm able to get sortable to work with other elements, but it does not with the Select