Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // donate page
  2. var showOther = document.getElementsByClassName("amountOtherWrapper");
  3. console.log(showOther);
  4.  
  5. showOther.addEventListener("click", hideElement);
  6.  
  7. function hideElement() {
  8. if (showOther.className === "hide") {
  9. showOther.className = "";
  10. } else {
  11. showOther.className = "hide";
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement