Guest User

Untitled

a guest
Jun 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const toggleDropdown = () => {
  2. const dropdown = document.querySelector(".structure");
  3. dropdown.classList.toggle("hide");
  4.  
  5. const input = document.querySelector(".input");
  6. input.classList.toggle("input__active");
  7. };
Add Comment
Please, Sign In to add comment