Guest User

Untitled

a guest
Dec 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $("#sub-wrapper").prepend("<h2>Time Remaining: <span id='counter-number'>300</span> Seconds</h2>");
  2.  
  3. $("#Begin").remove();
  4.  
  5. for (var i = 0; i < questions.length; i++) {
  6. card.append("<h2>" + questions[i].question + "</h2>");
  7. for (var j = 0; j < questions[i].answers.length; j++) {
  8. card.append("<input type='radio' name='question-" + i +
  9. "' value='" + questions[i].answers[j] + "''>" + questions[i].answers[j]);
  10. }
  11. }
Add Comment
Please, Sign In to add comment