Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5.  
  6. <body>
  7.  
  8. <p>Change the world</p>
  9. <button onclick="tan()">Click me!</button>
  10.  
  11. </body>
  12.  
  13. <script>
  14.  
  15. function tan(){
  16. document.getElementsByTagName("p")[0].innerText = "hello"; //because get ElementsByTagName will return an array!
  17.  
  18. }
  19.  
  20. </script>
  21.  
  22. </html>
Add Comment
Please, Sign In to add comment