Skip to content

Instantly share code, notes, and snippets.

@kzkn
Created April 9, 2019 12:43
Show Gist options
  • Save kzkn/43ddb8a52712661c75dfea2d79edeb56 to your computer and use it in GitHub Desktop.
Save kzkn/43ddb8a52712661c75dfea2d79edeb56 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Include Choices CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css">
<!-- Include Choices JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js"></script>
</head>
<body>
<select id="single">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<script>
const single = document.getElementById('single')
console.log(single.options.length) // => 3
const choices = new Choices(single)
console.log(single.options.length) // => 1
choices.destroy()
console.log(single.options.length) // => 0 (expected 3)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment