home *** CD-ROM | disk | FTP | other *** search
/ PC User 2005 May / CD / PCU0505CD.iso / software / full / coffecup / files / html2005.exe / %MAINDIR% / Javascript / RotatingDropDown.xml < prev    next >
Encoding:
Text File  |  2005-02-16  |  1.1 KB  |  46 lines

  1. <ccResource>
  2.   <ccTitle>
  3. Rotating Drop Down
  4.   </ccTitle>
  5.   <ccCategory>
  6. Fun Stuff
  7.   </ccCategory>
  8.   <ccDescription>
  9.  This JavaScript will switch the order of a drop down menu automatically. 
  10.   </ccDescription>
  11.   <ccInstructions>
  12.  
  13.   </ccInstructions>
  14.   <ccHeadContent>
  15.   
  16.   </ccHeadContent>
  17.   <ccBodyContent>
  18. <form name=menuform>
  19. <select size=1 name="msg">
  20. <option>You can lead a horse to water but cannot make it drink.
  21. <option>Time flies like an arrow but fruit flies like a banana.
  22. <option>Call me anything you like but don't call me late for dinner.
  23. <option>I don't know what WW3 will be like but WW4 will be of sticks and stones.
  24. </select></form>
  25. <script language="javascript">
  26. <!-- Begin
  27. function CC_rotate() {
  28. menu = document.menuform.msg;
  29. chosen = menu.selectedIndex;
  30. menu.selectedIndex= (chosen == (menu.length-1)) ? 0 : chosen + 1;
  31. setTimeout("CC_rotate()",5000);
  32. }
  33. CC_rotate();
  34. // End -->
  35. </script>
  36.   </ccBodyContent>
  37.   <ccElementContent>
  38.   
  39.    <ccElementName></ccElementName>
  40.    <ccElementAction></ccElementAction>
  41.    
  42.   </ccElementContent>
  43.   <ccExtraData>
  44.  
  45.   </ccExtraData>
  46. </ccResource>