Skip to content

Instantly share code, notes, and snippets.

@shiv122
Created August 11, 2021 11:17
Show Gist options
  • Save shiv122/3d468be6160da815570b8e8096ca61e6 to your computer and use it in GitHub Desktop.
Save shiv122/3d468be6160da815570b8e8096ca61e6 to your computer and use it in GitHub Desktop.
$('#city')
.append($("<option></option>")
.attr("value", item)
.text(item));
$('#city').trigger('change');
// remove all options
$('#city').empty().trigger("change");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment