shoyebzz

Hide show -javascript

Jan 20th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var ecsd = document.getElementById("shoyeb");
  2. ecsd.style.display = 'block';
  3.  
  4. ecsd.onclick = function() {
  5. ecsd.style.display = 'none';
  6. }
  7.  
  8. /*+++++++++++++++++++++++++++++*/
  9.  
  10. var ecsd = document.getElementById("couponid");
  11. //ecsd.style.display = 'block';
  12. //ecsd.setAttribute("class", "couponshow");
  13. ecsd.classList.add("couponshow", "coupon");
  14.  
  15. ecsd.onclick = function() {
  16. //this.classList.remove("couponshow");
  17. //alert("clicked");
  18. ecsd.className ="";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment