trek (owner)

Revisions

gist: 126591 Download_button fork
public
Public Clone URL: git://gist.github.com/126591.git
Embed All Files: show embed
max-needs-help.js #
1
2
3
4
5
6
7
8
$(document).ready(function(){
  var questionCount = 1;
  var questions = $('.questions');
  $('#addQuestion').click(function(){
    $(questions[questionCount]).show();
    questionCount++;
  });
});