From aafd97f3c0a45fad63c9de61ffd71e13d0255886 Mon Sep 17 00:00:00 2001 From: ablwr Date: Sun, 3 Aug 2014 19:35:53 -0400 Subject: [PATCH] basic non functioning form --- index.html | 118 +++++++++++++++++++++++++--------------------------- js/forms.js | 12 ++++++ 2 files changed, 68 insertions(+), 62 deletions(-) create mode 100644 js/forms.js diff --git a/index.html b/index.html index 8e61ec3..3a8fd4d 100644 --- a/index.html +++ b/index.html @@ -1,75 +1,69 @@ - - - - - -Demo - + + ffmproviser + - - + + + + - - + + + + -
-

➺ ffmproviser ❥

+
+

➺ ffmproviser ❥

- + -
-

First Question

-
-
-

Question

-
- Intro question - - - - - - - -

(*) Mandatory

-
-
+
+
+ First form + +

What is your question?

+
    +
  • Display info
  • +
  • Export for web
  • +
+
+
-

Second Step

-
-

Profile

-
+
+
+
+ Input and Output +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+
+
+
+ Your command line: + +
+
-
-
+
-

Third Step

-
- - - -
- -

Forth Step

-
- - - -
+ -
- - + \ No newline at end of file diff --git a/js/forms.js b/js/forms.js new file mode 100644 index 0000000..6c80228 --- /dev/null +++ b/js/forms.js @@ -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"); + }); +}); \ No newline at end of file