<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/awesomeforms/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 02 Feb 2012 21:43:11 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/awesomeforms/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -14,33 +14,29 @@
            
         
 
-                    &lt;div class="awesomePage"&gt;
                     &lt;fieldset&gt;
                         &lt;legend&gt;Personal Information&lt;/legend&gt;
                         &lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
-                        &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
-
-
-                        &lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
-                        &lt;div&gt;
-                        &lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
-                        &lt;input type="radio" name="servicesBefore" value="No" /&gt;No
-                        &lt;/div&gt;
-                        
+                        &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;                        
                         &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
                         &lt;div&gt;
                         &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
                         &lt;input type="radio" name="accident" value="No" /&gt;No
                         &lt;/div&gt;
+                        &lt;label for="legalFirstName"&gt;Legal first name&lt;/label&gt;
+                        &lt;input type="text" name="legalFirstName" class="required" /&gt;
+                        &lt;label for="legalMiddleName"&gt;Legal middle name&lt;/label&gt;
+                        &lt;input type="text" name="legalMiddleName" /&gt;
+                        &lt;label for="legalLastName"&gt;Legal last name&lt;/label&gt;
+                        &lt;input type="text" name="legalLastName" class="required" /&gt;
 
                     &lt;/fieldset&gt;
-                    &lt;/div&gt;
+
 
             &lt;/form&gt;
 
 1) The form itself has to be given the class of "awesomeForm".
-2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
-3) Fieldset tag is required
+2) Each page is separated by a fieldset tag, which is required
 4) Legend tag labels the page
 5) Each input control consists of a "label /input" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
 6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Thu, 02 Feb 2012 21:43:11 -0000</pubDate><guid>https://sourceforge.net7575d4e16f951ed9d1e9e23470d50e5b71d777bd</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -41,7 +41,7 @@
 1) The form itself has to be given the class of "awesomeForm".
 2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
 3) Fieldset tag is required
-4) Legal tag labels the page
+4) Legend tag labels the page
 5) Each input control consists of a "label /input" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
 6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Tue, 24 Jan 2012 17:16:53 -0000</pubDate><guid>https://sourceforge.netdd6c0129508a15b44c929e6412074701b0f7052e</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -101,3 +101,104 @@
             $('#awesomeForm').awesomeForm('hidePage',9);
         };              
     });
+
+
+goToPage
+----------------------
+This takes you directly to the (zero-based) page number of the form, as in this example;
+
+$('#awesomeForm').awesomeForm('goToPage',isReadyToSubmit);
+
+validateForm
+----------------------
+This validates every single input element in the form, and is usually called before submitting the form - although it can be called for any event.
+
+ $('#awesomeForm').awesomeForm('validateForm');
+
+
+Examples:
+==================
+
+Simple Hide/Show Page
+----------------------
+
+    $("input:radio[name=accident]").change(function(){
+        if ($("input:radio[name='accident']:checked").val() == 'Yes') {                         
+            $('#awesomeForm').awesomeForm('showPage',9);
+        }
+        else {
+            $('#awesomeForm').awesomeForm('hidePage',9);
+        };              
+    });
+
+
+Custom Validation Message/Integration with jQuery validation plugin:
+----------------------------
+    // Here is an example of some custom validation using the jQuery validation plugin
+    // from http://bassistance.de/jquery-plugins/jquery-plugin-validation/
+    // This calculates the birthday as soon as the user leaves focus
+    // and determines if the user is a minor or not.
+    $("#birthDate").focusout(function() {
+            
+			// This calculates if they are over 18 or not.
+			var dateText = $("#birthDate").val();
+            var currentDate = dateText.split("/");
+            var day = currentDate[1];
+            var month = currentDate[0];
+            var year = currentDate[2];
+            var age = 18;
+            
+			// My data is the birthday converted into a JavaScript object
+            var mydate = new Date();
+            mydate.setFullYear(year, month-1, day);
+            
+            var currdate = new Date();
+
+            // If this is not a valid birthday (i.e. the baby is born in
+            // the future.
+            if (mydate &gt; currdate) {
+                $(this).val("");
+                jQuery.validator.messages.required = "Whoa!  You were born in the future?!?";
+                $("#awesomeForm").validate().element("#birthDate");
+                jQuery.validator.messages.required = "This field is required.";
+            }
+            else {          
+                // If they are a minor, add the two minor forms.
+                // If not, remove the forms again.  (They have to 
+                // be removed again, in case the user switches them
+                // on and off.
+                currdate.setFullYear(currdate.getFullYear() - age);
+                if ((currdate - mydate) &lt; 0){
+                    $('#awesomeForm').awesomeForm('showPage',2);
+                    $('#awesomeForm').awesomeForm('showPage',6);
+                }
+                else {
+                    $('#awesomeForm').awesomeForm('hidePage',2);
+                    $('#awesomeForm').awesomeForm('hidePage',6);
+                }
+            }
+    });
+
+
+Form submission
+-----------------------------------
+    //  This is where the form finally submits, to a file called confirm.php
+	//  Before submitting, the form is validated.  If it doesn't validate - then
+	//  it goes the page with validation errors.
+    $('#awesomeForm').submit(function() {
+		// Validate the form
+        isReadyToSubmit = $('#awesomeForm').awesomeForm('validateForm');
+		// If it validates then seralize all the inputs and post them
+		// to the server side processing page.
+        if (isReadyToSubmit === true) {
+            var urlstring = $(this).serialize();
+            $.post('/confirm.php', urlstring, function(data) {
+                $('#main-content').html(data);
+            });
+        } else {
+			// Otherwise - go the page that has the error,
+			// which was returned from the validation method above.
+            $('#awesomeForm').awesomeForm('goToPage',isReadyToSubmit);
+        };
+        return false;       
+    });
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 18:25:57 -0000</pubDate><guid>https://sourceforge.net3c06547a424e8b8cc60f03e40be55b45ed081ba6</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -5,36 +5,27 @@
 
 The project is called "awesomeForms" and it's basically a way to turn a really long, boring form into a multipage user experience with thumbnails for easy navigation, and integration of the jQuery validation plugin at http://bassistance.de/jquery-plugins/jquery-plugin-validation/  by JÖRN ZAEFFERER.  The form validates itself as the user tabs through each input element, and also as they switch pages.  Pages that don't pass validation are outlined in red, and pages that pass validation are turned green.  
 
-Methods:
-==================
-It currently comes with four methods:
-
-hidePage: Hides a page from the stack of documents and the thumbnails page.
-showPage: Shows a hidden page, and makes it appear back in it's appropriate location.
-goToPage: Navigate directly to a page in the stack of pages.
-validateForm: Calls the jQuery validate plugin to validate every element in the form.
-
 Getting started:
 ==================
 
 Well, the first step is to create the appropriate HTML structure for the form.  Basically, a form with only one page would look something like this:
 
             &lt;form id="awesomeForm" style="clear:both;"&gt;
            
         
 
                     &lt;div class="awesomePage"&gt;
                     &lt;fieldset&gt;
                         &lt;legend&gt;Personal Information&lt;/legend&gt;
                         &lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
                         &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
 
 
                         &lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
                         &lt;div&gt;
                         &lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
                         &lt;input type="radio" name="servicesBefore" value="No" /&gt;No
                         &lt;/div&gt;
                         
                         &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
                         &lt;div&gt;
@@ -42,16 +33,16 @@
                         &lt;input type="radio" name="accident" value="No" /&gt;No
                         &lt;/div&gt;
 
                     &lt;/fieldset&gt;
                     &lt;/div&gt;
 
             &lt;/form&gt;
 
 1) The form itself has to be given the class of "awesomeForm".
 2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
 3) Fieldset tag is required
 4) Legal tag labels the page
 5) Each input control consists of a "label /input" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
 6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
 
 
@@ -62,15 +53,51 @@
                         &lt;/div&gt;
 
 
 The second step is to include a copy of jQuery and the jQuery validate plugin.  
 
 jQuery: https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js
 jQuery validate: http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js
 
 The plugin also works with many of the other plugins like jQuery mask or jQuery, so include those if desired.  The validation plugin is mandatory.
 
 Finally, initialize the plugin by calling it on the awesomePage class, like so:
 
 $('#awesomeForm').awesomeForm();
 
 
+Methods:
+==================
+It currently comes with four methods:
+
+hidePage: Hides a page from the stack of documents and the thumbnails page.
+showPage: Shows a hidden page, and makes it appear back in it's appropriate location.
+goToPage: Navigate directly to a page in the stack of pages.
+validateForm: Calls the jQuery validate plugin to validate every element in the form.
+
+hidePage/showPage
+--------------------------
+
+Hiding pages is zero based, so to hide page 2 of the form would look something like this:
+
+$('#awesomeForm').awesomeForm('hidePage',1);
+
+Where 1 is the page number, or the 2nd page starting from page 0.
+
+to show the page again:
+
+$('#awesomeForm').awesomeForm('showPage',1);
+
+A more advanced example:
+
+    // A very simple hide/show page function.  
+    // If the accident radio button is checked, show that form.  
+    // Otherwise, hide it.  (It has to be rehidden in case
+    // people switch the box to yes, and then back to no.)
+    $("input:radio[name=accident]").change(function(){
+        if ($("input:radio[name='accident']:checked").val() == 'Yes') {                         
+            $('#awesomeForm').awesomeForm('showPage',9);
+        }
+        else {
+            $('#awesomeForm').awesomeForm('hidePage',9);
+        };              
+    });
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 18:17:39 -0000</pubDate><guid>https://sourceforge.netca4d876342507711c8a1ac6e8ce6082a2556390c</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -62,3 +62,15 @@
                         &lt;/div&gt;
 
 
+The second step is to include a copy of jQuery and the jQuery validate plugin.  
+
+jQuery: https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js
+jQuery validate: http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js
+
+The plugin also works with many of the other plugins like jQuery mask or jQuery, so include those if desired.  The validation plugin is mandatory.
+
+Finally, initialize the plugin by calling it on the awesomePage class, like so:
+
+$('#awesomeForm').awesomeForm();
+
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 18:13:08 -0000</pubDate><guid>https://sourceforge.net95497722dfcd0f623ea083dd8c66fadad7cba467</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -45,17 +45,20 @@
                     &lt;/fieldset&gt;
                     &lt;/div&gt;
 
-
+            &lt;/form&gt;
+
 1) The form itself has to be given the class of "awesomeForm".
 2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
 3) Fieldset tag is required
 4) Legal tag labels the page
 5) Each input control consists of a "label /input" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
 6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
 
 
                         &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
                         &lt;div&gt;
                         &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
                         &lt;input type="radio" name="accident" value="No" /&gt;No
                         &lt;/div&gt;
+
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 17:51:50 -0000</pubDate><guid>https://sourceforge.net2c03a020dcef49e0d9f7cbb84db49f622f3731d7</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -19,44 +19,43 @@
 
 Well, the first step is to create the appropriate HTML structure for the form.  Basically, a form with only one page would look something like this:
 
-
-
-&lt;form id="awesomeForm" style="clear:both;"&gt;
-&lt;div class="awesomePage"&gt;
-&lt;fieldset&gt;
-&lt;legend&gt;Personal Information&lt;/legend&gt;
-&lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
-&lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
-
-
-&lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
-&lt;div&gt;
-&lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
-&lt;input type="radio" name="servicesBefore" value="No" /&gt;No
-&lt;/div&gt;
-
-&lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
-&lt;div&gt;
-&lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
-&lt;input type="radio" name="accident" value="No" /&gt;No
-&lt;/div&gt;
-
-&lt;/fieldset&gt;
-&lt;/div&gt;
-&lt;/form&gt;
-
-
-
+            &lt;form id="awesomeForm" style="clear:both;"&gt;
+           
+        
+
+                    &lt;div class="awesomePage"&gt;
+                    &lt;fieldset&gt;
+                        &lt;legend&gt;Personal Information&lt;/legend&gt;
+                        &lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
+                        &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
+
+
+                        &lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
+                        &lt;div&gt;
+                        &lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
+                        &lt;input type="radio" name="servicesBefore" value="No" /&gt;No
+                        &lt;/div&gt;
+                        
+                        &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
+                        &lt;div&gt;
+                        &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
+                        &lt;input type="radio" name="accident" value="No" /&gt;No
+                        &lt;/div&gt;
+
+                    &lt;/fieldset&gt;
+                    &lt;/div&gt;
+
+
 1) The form itself has to be given the class of "awesomeForm".
 2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
 3) Fieldset tag is required
 4) Legal tag labels the page
-5) Each input control consists of a "&lt;label /&gt;&lt;input /&gt;" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
+5) Each input control consists of a "label /input" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
 6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
 
 
-&lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
-&lt;div&gt;
-&lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
-&lt;input type="radio" name="accident" value="No" /&gt;No
-&lt;/div&gt;
+                        &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
+                        &lt;div&gt;
+                        &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
+                        &lt;input type="radio" name="accident" value="No" /&gt;No
+                        &lt;/div&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 17:51:13 -0000</pubDate><guid>https://sourceforge.net597555440aa3c30f0dbfb30f05b64dc300e98d1f</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -19,27 +19,44 @@
 
 Well, the first step is to create the appropriate HTML structure for the form.  Basically, a form with only one page would look something like this:
 
-            &lt;form id="awesomeForm" style="clear:both;"&gt;
-                    &lt;div class="awesomePage"&gt;
-                    &lt;fieldset&gt;
-                        &lt;legend&gt;Personal Information&lt;/legend&gt;
-                        &lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
-                        &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
-
-
-                        &lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
-                        &lt;div&gt;
-                        &lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
-                        &lt;input type="radio" name="servicesBefore" value="No" /&gt;No
-                        &lt;/div&gt;
-                        
-                        &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
-                        &lt;div&gt;
-                        &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
-                        &lt;input type="radio" name="accident" value="No" /&gt;No
-                        &lt;/div&gt;
-
-                    &lt;/fieldset&gt;
-                    &lt;/div&gt;
-            &lt;/form&gt;
-
+
+
+&lt;form id="awesomeForm" style="clear:both;"&gt;
+&lt;div class="awesomePage"&gt;
+&lt;fieldset&gt;
+&lt;legend&gt;Personal Information&lt;/legend&gt;
+&lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
+&lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
+
+
+&lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
+&lt;div&gt;
+&lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
+&lt;input type="radio" name="servicesBefore" value="No" /&gt;No
+&lt;/div&gt;
+
+&lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
+&lt;div&gt;
+&lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
+&lt;input type="radio" name="accident" value="No" /&gt;No
+&lt;/div&gt;
+
+&lt;/fieldset&gt;
+&lt;/div&gt;
+&lt;/form&gt;
+
+
+
+1) The form itself has to be given the class of "awesomeForm".
+2) Each page is separated by a div with the class of "awesomePage".  An "awesomePage" consists of only a legend, and then label/input pairs - no other html is allowed.
+3) Fieldset tag is required
+4) Legal tag labels the page
+5) Each input control consists of a "&lt;label /&gt;&lt;input /&gt;" pair.  That IS absolutely necessary - every input needs to be in the format of label tag, and then input tag.
+6) Radio button groups also need a special format.  Again, this is necessary, and the script will break if the format changes.  The radio input elements need to be grouped in a div that follows the label tag, like below:  
+
+
+&lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
+&lt;div&gt;
+&lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
+&lt;input type="radio" name="accident" value="No" /&gt;No
+&lt;/div&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 17:45:19 -0000</pubDate><guid>https://sourceforge.net9d566d2603e4fe208580fab66d8f0d3c1de77874</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,45 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/awesomeforms/wiki/markdown_syntax/) syntax.
+Intro
+==================
+
+Hi everyone!  This is my first jQuery plugin and my first open source project so go easy on me.
+
+The project is called "awesomeForms" and it's basically a way to turn a really long, boring form into a multipage user experience with thumbnails for easy navigation, and integration of the jQuery validation plugin at http://bassistance.de/jquery-plugins/jquery-plugin-validation/  by JÖRN ZAEFFERER.  The form validates itself as the user tabs through each input element, and also as they switch pages.  Pages that don't pass validation are outlined in red, and pages that pass validation are turned green.  
+
+Methods:
+==================
+It currently comes with four methods:
+
+hidePage: Hides a page from the stack of documents and the thumbnails page.
+showPage: Shows a hidden page, and makes it appear back in it's appropriate location.
+goToPage: Navigate directly to a page in the stack of pages.
+validateForm: Calls the jQuery validate plugin to validate every element in the form.
+
+Getting started:
+==================
+
+Well, the first step is to create the appropriate HTML structure for the form.  Basically, a form with only one page would look something like this:
+
+            &lt;form id="awesomeForm" style="clear:both;"&gt;
+                    &lt;div class="awesomePage"&gt;
+                    &lt;fieldset&gt;
+                        &lt;legend&gt;Personal Information&lt;/legend&gt;
+                        &lt;label for="dateOfArrival"&gt;Future Meeting Date&lt;/label&gt;
+                        &lt;input type="text" id="dateOfArrival" name="dateOfArrival" class="required" /&gt;
+
+
+                        &lt;label for="servicesBefore"&gt;Have you ever been here before?&lt;/label&gt;
+                        &lt;div&gt;
+                        &lt;input type="radio" name="servicesBefore" value="Yes" /&gt;Yes
+                        &lt;input type="radio" name="servicesBefore" value="No" /&gt;No
+                        &lt;/div&gt;
+                        
+                        &lt;label for="accident"&gt;Have you recently been involved in an accident/injury?&lt;/label&gt;
+                        &lt;div&gt;
+                        &lt;input class="required" type="radio" name="accident" value="Yes" /&gt;Yes
+                        &lt;input type="radio" name="accident" value="No" /&gt;No
+                        &lt;/div&gt;
+
+                    &lt;/fieldset&gt;
+                    &lt;/div&gt;
+            &lt;/form&gt;
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 17:36:10 -0000</pubDate><guid>https://sourceforge.net8af06459b8236f6e3b1f296a4fd6f9641a46c4a4</guid></item><item><title>WikiPage Home modified by Warren J. Thompson</title><link>https://sourceforge.net/p/awesomeforms/wiki/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/awesomeforms/wiki/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warren J. Thompson</dc:creator><pubDate>Wed, 21 Sep 2011 16:08:17 -0000</pubDate><guid>https://sourceforge.net6ac0deb2affbe2f91e2d40b86795e357d2807456</guid></item></channel></rss>