Advertisement
Guest User

Arman

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function init()
  2. {
  3.     var tags = document.getElementsByTagName("h1");
  4.     tags[0].onclick = changeColor;
  5. }
  6.  
  7. function changeColor()
  8. {
  9.     this.innerHTML = "Please come again...";
  10.     var randColor = "#" + Math.floor(Math.random() * 16777215).toString(16);
  11.     this.style.color = randColor;
  12. }
  13.  
  14. onload = init;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement