basic non functioning form

This commit is contained in:
ablwr
2014-08-03 19:35:53 -04:00
parent 6783f990a8
commit aafd97f3c0
2 changed files with 68 additions and 62 deletions

12
js/forms.js Normal file
View File

@ -0,0 +1,12 @@
$(document).ready(function() {
var $question = $('.question'),
$nextQ = $('.next-question');
$question.hide();
$question.first().show();
$nextQ.click(function() {
$question.next().slideDown("slow");
});
});