Guest User

Untitled

a guest
Jan 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. const giveLevels = Array.from(document.querySelectorAll('.give-donation-level-btn'));
  2. giveLevels.pop();
  3. const customAmount = document.querySelector('.give-btn-level-custom');
  4. const giveTotal = document.querySelector('.give-total-wrap');
  5.  
  6. function hide() {
  7. giveTotal.classList.add("hide");
  8. }
  9. function show() {
  10. giveTotal.classList.remove("hide");
  11. }
  12.  
  13. customAmount.addEventListener("click", show, false);
  14. giveLevels.forEach((level) => {
  15. level.addEventListener('click', hide, false);
  16. });
Add Comment
Please, Sign In to add comment