Advertisement
lessientelrunya

changecolor

Jul 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function turnPurple()
  2. {
  3.     document.getElementById('colorDiv').style.backgroundColor = 'purple';
  4. }
  5. function turnGreen()
  6. {
  7.     document.getElementById('colorDiv').style.backgroundColor = 'green';
  8. }
  9. function turnOrange()
  10. {
  11.     document.getElementById('colorDiv').style.backgroundColor = 'orange';
  12. }
  13. function turnRed()
  14. {
  15.     document.getElementById('colorDiv').style.backgroundColor = 'red';
  16. }
  17. function turnBlue()
  18. {
  19.     document.getElementById('colorDiv').style.backgroundColor = 'blue';
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement