Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1 onclick="changeText(this)">Click on this text!</h1>
  6. <!-- what does the "this" ^ here do? -->
  7. <script>
  8. function changeText(id) {
  9. id.innerHTML = "Ooops!";
  10. }
  11. </script>
  12.  
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement