mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-06-25 12:17:51 +02:00
basic non functioning form
This commit is contained in:
12
js/forms.js
Normal file
12
js/forms.js
Normal 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");
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user