Skip to content

Instantly share code, notes, and snippets.

@idettman
Created October 14, 2015 15:25
Show Gist options
  • Save idettman/f5bcbd805f5b5327f030 to your computer and use it in GitHub Desktop.
Save idettman/f5bcbd805f5b5327f030 to your computer and use it in GitHub Desktop.
Remove All Select Options
/**
* @param {HtmlSelectElement} element
*/
function removeAllSelectOptions(element)
{
while (element.options.length)
{
element.remove(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment