mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-01-15 21:13:05 +01:00
8 lines
182 B
HTML
8 lines
182 B
HTML
|
function newQuestion(){
$question.hide();
$question.first().show();
|
|||
|
$form.on("click", ".new-question", function() {
|
|||
|
$(this).parent().parent().next().slideDown("slow");
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
|