Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created December 19, 2019 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/f425c95a4a30f8fa9e57df773915506f to your computer and use it in GitHub Desktop.
Save BMU-Verlag/f425c95a4a30f8fa9e57df773915506f to your computer and use it in GitHub Desktop.
function createOption(value, option) {
var optionElement = document.createElement("option");
optionElement.appendChild(document.createTextNode(option));
optionElement.value = value;
return optionElement;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment