Advertisement
Guest User

Untitled

a guest
Sep 29th, 2010
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.04 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.  
  5. <head>
  6. <meta http-equiv="Content-Type" content="application/xhtml+xml;charset=utf-8" />
  7. <title>Not document.write()</title>
  8.  
  9. <style type="text/css">
  10. .message {margin: 0.5em; padding: 0.5em; border: 3px solid #333; color: #000;}
  11. .message strong {color: #c00;}
  12. </style>
  13. <script type="text/javascript">
  14. <![CDATA[
  15. window.addEventListener(
  16.    'load',
  17.    function(){
  18.        var clicked = 0;
  19.        
  20.        document.addEventListener(
  21.            'click',
  22.            function(){
  23.                document.body.innerHTML =
  24.                    '<div class="message">This has been clicked <strong>'+ (++clicked) +'</strong> times.</div>'
  25.                    + document.body.innerHTML;
  26.            },
  27.            false
  28.        );
  29.        
  30.    },
  31.    false
  32. );
  33. ]]>
  34. </script>
  35. </head>
  36.  
  37. <body>
  38.  
  39. <div class="message">This has been clicked <strong>0</strong> times.</div>
  40.  
  41. </body>
  42.  
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement