How to remove selected items from jquery multi chosen select after click on reset button?
<select data-placeholder="Select" id="options" class="chosen-select" maxwidth="50px" multiple tabindex="15" ></select>
I have tried several ways with no luck. This is my code:
$("#options").multiselect('refresh');
$("#options").multiselect('clearSelection');
$('#options').multiSelect('deselect_all');
$("#options").find('option:selected').removeAttr("selected");
After above still display selected items as in the image,
Any help would be appreciated.
