How can I add or remove options in JQuery UI Multiselect ? I am initializing the multiselect on page load and I need to remove existing values and add new values based on anothe
Thank you this helped. I was using multiselect UI widget and this is what worked
jQuery("select[title='" + FieldNameTitleText + "']").append( "" + OptionText + "" ).multiselect("refresh");