Advertisement
gitlez

YA: Simple Javascript Questionaire Pt1

Apr 14th, 2012
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. <!--
  2. In response to a Yahoo Answers Question
  3. To Be Used With: http://pastebin.com/egpZTDwq
  4. -->
  5. <html>
  6.     <head>
  7.         <title>Simple Quiz</title>
  8.         <script type="text/javascript" language="Javascript" src="SimpleQuestionaire.js"></script>
  9.     </head>
  10. <body>
  11.     <h1 id="questionBox"></h1>
  12.     <p id="answersBox" style="height: 230px;">
  13.    
  14.     </p>
  15.     <button onclick="switchQ(-1);" id="prevQBtn">Prev</button>
  16.     <button onclick="switchQ(1);" id="nextQBtn">Next</button>
  17.     <button onclick="displayResults();" id="resultsQBtn">Results</button>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement