I used jquery multiselect2side select box. I used below code to add option
$("#myselect").multiselect2side('addOption', {name: opionTitle, value: libraryvalue[i].uri, selected: false});
In the same way, I want to remove all option from select box. I used below jquery script to remove. But it was not working
$("#myselect").empty();