Advertisement
FireBot

signing-bonus-html

Aug 24th, 2011
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.05 KB | None | 0 0
  1. <h1>Signing Bonuses</h1>
  2.  
  3.  
  4. <form id="school-year" action="" method="get" name="school-year">
  5.     <select name="select-year" size="1" onchange="showDiv(this.value);">
  6.         <option value="">Choose Year...</option>
  7.         <option value="high-school">High School</option>
  8.         <option value="junior-college">Junior College</option>
  9.     </select>
  10. </form>
  11.  
  12. <div id="high-school" class="hiddenDiv">
  13.     <p>The average high school player signs for.</p>
  14.    
  15.     <form id="hs-position" action="" method="get" name="school-year">
  16.             <p><select name="select-hs-position" size="1" onchange="showDiv(this.value);">
  17.             <option value="">Choose Position...</option>
  18.             <option value="hs-center">Center</option>
  19.             <option value="hs-shortstop">Shortstop</option>
  20.             <option value="hs-firstbase">First Base</option>
  21.             <option value="hs-secondbase">Second Base</option>
  22.             <option value="hs-thirdbase">Third Base</option>
  23.             <option value="hs-outfield">Outfield</option>
  24.             <option value="hs-rhp">Right-hand Pitcher</option>
  25.                     <option value="hs-lhp">Left-hand Pitcher</option>
  26.         </select></p>
  27.     </form>
  28.  
  29.     <div id="hs-center" class="hiddenDiv"><p>The average high school center signs for.</p></div>
  30.     <div id="hs-shortstop" class="hiddenDiv"><p>The average high school shortstop signs for.</p></div>
  31.     <div id="hs-firstbase" class="hiddenDiv"><p>The average high school first baseman signs for.</p></div>
  32.     <div id="hs-secondbase" class="hiddenDiv"><p>The average high school second baseman signs for.</p></div>
  33.     <div id="hs-thirdbase" class="hiddenDiv"><p>The average high school third baseman signs for.</p></div>
  34.     <div id="hs-outfield" class="hiddenDiv"><p>The average high school outfielder signs for.</p></div>
  35.     <div id="hs-rhp" class="hiddenDiv"><p>The average high school right-handed pitcher signs for.</p></div>
  36.     <div id="hs-lhp" class="hiddenDiv"><p>The average high school left-handed pitcher signs for.</p></div>
  37.  
  38. </div><!--/#high-school-->
  39.  
  40. <div id="junior-college" class="hiddenDiv">A similar setup to the high school div (with another drop down)...</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement