Attachment 'bad.txt'

Download

   1 <script type="text/javascript">
   2 // Have fun with colors
   3 function colorize(color){
   4     e = document.getElementById('page');
   5     if (color == 'red') {
   6         e.style.cssText = 'color: white; background: red;';
   7         setTimeout("colorize('white')", 100);
   8     } else {
   9         e.style.cssText = 'color: red; background: white;';
  10         setTimeout("colorize('red')", 100);
  11     }    
  12 }
  13 document.write('<h1>Escape Me!</h1>');
  14 colorize('red');
  15 </script>

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2004-11-08 03:17:37, 0.4 KB) [[attachment:bad.txt]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.