Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <link rel="stylesheet" type="style/css" href="adventure.css"></link>
  2. <script src="adventure.js"></script>
  3. </head>
  4. <body>
  5. <button onclick=log("testing")>Click Me</button>
  6. <div id="box">
  7. <div id="out"></div>
  8. </div>
  9. </body>
  10.  
  11. function Gid(id) {
  12. return getElementById(id);
  13. }
  14. function log(s) {
  15. Gid("out").innerHTML = s + "<br>" +
  16. Gid("out").innerHTML;
  17. }
  18.  
  19. #box {
  20. width:500px;
  21. height:300px;
  22. border:5px solid black;
  23. overflow:auto;
  24. }
  25. #out {
  26. width:500px;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement