home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 July / www_07_1999.iso / prez / amiga / KidHTML1_25.lha / KidHTML1.25 / Script / fakecounter.js < prev    next >
Text File  |  1998-08-25  |  666b  |  31 lines

  1. <!-- TWO STEPS TO INSTALL FAKE COUNTER:
  2.  
  3.    1.  Paste the coding into the HEAD of your HTML document
  4.    2.  Copy the last coding into the BODY of your HTML document  -->
  5.  
  6. <!-- STEP ONE: Copy this code into the HEAD of your HTML document  -->
  7.  
  8. <HEAD>
  9.  
  10. <SCRIPT LANGUAGE="JavaScript">
  11. <!-- Begin
  12. var ran
  13. ran = Math.round(Math.random()*50000)
  14. function alertUser() {
  15. alert("You are visitor number " + ran + " to this page.")
  16. }
  17. // End -->
  18. </SCRIPT>
  19.  
  20. <!-- STEP TWO: Copy this last code into the HEAD of your HTML document  -->
  21.  
  22. <BODY>
  23.  
  24. <CENTER>
  25. <FORM>
  26. <INPUT TYPE="button" VALUE="How many visits?"  onClick="alertUser()">
  27. </FORM>
  28. </CENTER>
  29.  
  30. <!-- Script Size:  0.69 KB  -->
  31.