Advertisement
kstoyanov

02. Fill Dropdown

Sep 29th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function addItem() {
  2.     console.log('TODO:...');
  3.     const itemText = document.getElementById('newItemText').value;
  4.     const itemValue = document.getElementById('newItemValue').value;
  5.  
  6.     let newOption = document.createElement('option');
  7.     newOption.text = itemText;
  8.     newOption.value = itemValue;
  9.  
  10.     const selectMenu = document.getElementById('menu');
  11.     selectMenu.appendChild(newOption);
  12.  
  13.     document.getElementById('newItemText').value = '';
  14.     document.getElementById('newItemValue').value = '';
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement