Skip to content

Instantly share code, notes, and snippets.

@idettman
Last active November 25, 2017 16:10
Show Gist options
  • Save idettman/a10186abcbe697374781 to your computer and use it in GitHub Desktop.
Save idettman/a10186abcbe697374781 to your computer and use it in GitHub Desktop.
Remove All Select Options (Fast)
/**
* @param {HtmlSelectElement} selectElement
*/
function removeAllSelectOptions(selectElement) {
selectElement.parentNode.replaceChild(selectElement.cloneNode(false), selectElement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment