Created
April 9, 2019 12:43
-
-
Save kzkn/43ddb8a52712661c75dfea2d79edeb56 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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