Guest User

Untitled

a guest
Nov 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. var ourCompany = document.getElementById("our-company");
  2. var services = document.getElementById("services");
  3. var products = document.getElementById("products");
  4. var resources = document.getElementById("resources");
  5. var goTo = document.getElementById("go-to");
  6.  
  7. // Close the dropdown(s) if the user clicks outside of it
  8. window.onclick = function (e) {
  9. if (!e.target.matches('.dropbtn') && !e.target.matches('.dropdown-content')) {
  10. ourCompany.classList.remove('active-drop');
  11. services.classList.remove('active-drop');
  12. products.classList.remove('active-drop');
  13. resources.classList.remove('active-drop');
  14. goTo.classList.remove('active-drop');
  15. }
  16. }
Add Comment
Please, Sign In to add comment