I am going to insert an html javascript code, the script works, but I want the menus hidden on page load.
I can't seem to figure it out, Thanks in advanceCode:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org" xml:lang="en"> <head> <title> The Pool Gods </title> <script type="text/javascript"> function toggle(list){ var listElementStyle=document.getElementById(list).style; if (listElementStyle.display=="none"){ listElementStyle.display="block"; } else { listElementStyle.display="none"; } } </script> </head> <body> <a href="javascript:toggle('menu')">Getting Started</a><br> <ul id="menu"> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods">Home</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/home/freeSignUp/">Free Sign-Up</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/home/howToPlay/">How To Play</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/home/rules/">Rules</a></font></li> </ul> </ul> <a href="javascript:toggle('menu2')">Standings</a><br> <ul id="menu2"> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/standings/dailyBuzz/">Daily Buzz</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/standings/hallOfFame/">Hall Of Fame</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/standings/formalChallenge/">Formal Challenge</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/standings/reportLoss/">Report A Loss</a></font></li> </ul> </ul> <a href="javascript:toggle('menu3')">Tournaments</a> <ul id="menu3"> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/tournaments/tourneyBuxLog/">Tourneys Bux Log</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/tournaments/tourneyAwards/">Awarded Medals</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/tournaments/tourneyRibbons/">Tourney Ribbons</a></font></li> <li><font color="red" font size="5"><a href="http://www.myleague.com/thepoolgods/tournaments/overview/">Over View</a></font></li> </ul> </ul> </body> </html>


LinkBack URL
About LinkBacks
Reply With Quote


