Advertisement
Guest User

Javascript

a guest
Oct 6th, 2015
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. </head>
  5. <body>
  6. <div id="x">Demo</div>
  7. <button onclick="x()">Click here</button>
  8. <script>
  9. function x(){
  10. document.getElementById("x").innerHTML+="Hello World"
  11. }
  12. </script>
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement