Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. var greenEl = document.getElementById("green");
  3.  
  4. var greenCh = function(){
  5.  
  6.  document.body.style.backgroundColor = "green";
  7.    
  8. };
  9.  
  10. greenEl.addEventListener("click", greenCh);
  11.  
  12.  
  13.  
  14. function redCh(){
  15.  
  16.     document.body.style.backgroundColor = "red";
  17.  
  18. }
  19.  
  20. function blueCh(){
  21.  
  22.     document.body.style.backgroundColor = "blue";
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement