Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <div class="controls">
  2. <select name="toppers">
  3. <option value="⭐">⭐</option>
  4. <option value="👼">👼</option>
  5. </select>
  6. </div>
  7. ...
  8. <script>
  9. const topSelector = document.querySelector('select');
  10. const topper = document.querySelector('.topper');
  11. function handleChange() {
  12. topper.textContent = topSelector.value;
  13. }
  14. topSelector.addEventListener('change', handleChange);
  15. </script>
Add Comment
Please, Sign In to add comment