Clear and refresh jQuery Chosen dropdown list
I'm trying to clear jQuery Chosen dropdown list and refresh it. HTML: <select data-placeholder="Select Picture..." class="chosen-select" style="width:250px;" id="picturegallery" tabindex="2"> <option value="" selected="selected"></option> <option value="x">remove me</option> </select> When I click "Refresh" button, it should turn into this: <select data-placeholder="Select Picture..." class="chosen-select" style="width:250px;" id="picturegallery" tabindex="2"> <option value="1">test</option> </select> What I have tried: $("#refreshgallery").click(function(){ $('#picturegallery').empty(); var