Guest User

Untitled

a guest
Jun 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. const printArea = document.querySelector("#content");
  2.  
  3. const dropdown = () => {
  4. const component = document.createElement("div");
  5.  
  6. const input = createInput();
  7. const dropdown = showDropdown();
  8.  
  9. component.appendChild(input);
  10. component.appendChild(dropdown);
  11. printArea.appendChild(component);
  12. }
Add Comment
Please, Sign In to add comment