<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: BabySteps - jQuery Step-by-Step Forms</title>
	<atom:link href="http://blog.vokle.com/index.php/2008/08/22/babysteps/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/</link>
	<description></description>
	<pubDate>Sat, 11 Sep 2010 02:42:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: adam</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-1797</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Tue, 20 Jul 2010 10:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-1797</guid>
		<description>could you attach custom events to each step?</description>
		<content:encoded><![CDATA[<p>could you attach custom events to each step?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eckehart</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-1677</link>
		<dc:creator>Eckehart</dc:creator>
		<pubDate>Tue, 04 May 2010 17:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-1677</guid>
		<description>Hi ! sehr guten Blog hast du da. Ich selber habe auch vor kurzem eine  Webseite erstellt,  eine Such-Maschine. Gerade noch erreichbar bei beta.jerome.de. Währe schön von dir wenn du mir sendest ob du sie gut findest und was noch schlecht an der Seite ist. Ein Designer kommt erst im Laufe des Wochenendes dazu. Ich warte - 345zhf4</description>
		<content:encoded><![CDATA[<p>Hi ! sehr guten Blog hast du da. Ich selber habe auch vor kurzem eine  Webseite erstellt,  eine Such-Maschine. Gerade noch erreichbar bei beta.jerome.de. Währe schön von dir wenn du mir sendest ob du sie gut findest und was noch schlecht an der Seite ist. Ein Designer kommt erst im Laufe des Wochenendes dazu. Ich warte - 345zhf4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spartan Code &#8211; Blog &#187; Divide formularios en pasos con jQuery</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-1542</link>
		<dc:creator>Spartan Code &#8211; Blog &#187; Divide formularios en pasos con jQuery</dc:creator>
		<pubDate>Thu, 15 Apr 2010 17:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-1542</guid>
		<description>[...] los posts del foro, en un rato que he tenido, me he encontrado babySteps, un plugin que hans me muestra y que se encarga de dividir formularios en partes. Un componente [...]</description>
		<content:encoded><![CDATA[<p>[...] los posts del foro, en un rato que he tenido, me he encontrado babySteps, un plugin que hans me muestra y que se encarga de dividir formularios en partes. Un componente [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonny En</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-1483</link>
		<dc:creator>Jonny En</dc:creator>
		<pubDate>Tue, 13 Apr 2010 17:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-1483</guid>
		<description>Is it possible to pass a parameter into the validation function like:

step1.bindStep(‘#step2′,{
     nextValidator: custom_validator(’step1′)
});

My form is quite complex so I wanted to create my own validation function but its having problems.</description>
		<content:encoded><![CDATA[<p>Is it possible to pass a parameter into the validation function like:</p>
<p>step1.bindStep(‘#step2′,{<br />
     nextValidator: custom_validator(’step1′)<br />
});</p>
<p>My form is quite complex so I wanted to create my own validation function but its having problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lippy</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-626</link>
		<dc:creator>Lippy</dc:creator>
		<pubDate>Sun, 29 Nov 2009 12:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-626</guid>
		<description>Hi Jackson ... I'm in the same position as you!

I have a link to jquery.js and to babysteps.js in the head.

I added the following in the body, just before the step1 div

  
var step1 = $('#step1');  
var step2 = $('#step2');  
var step3 = $('#step3');  
 
step1.bindStep(step2);  
step2.bindStep(step3);  

$('#step1').show();  
   

but like you it all remains hidden, presumably by the 
.step{display: none;}
which I'm guessing should be over-writen by the
 $('#step1').show(); 
but isn't!</description>
		<content:encoded><![CDATA[<p>Hi Jackson &#8230; I&#8217;m in the same position as you!</p>
<p>I have a link to jquery.js and to babysteps.js in the head.</p>
<p>I added the following in the body, just before the step1 div</p>
<p>var step1 = $(&#8217;#step1&#8242;);<br />
var step2 = $(&#8217;#step2&#8242;);<br />
var step3 = $(&#8217;#step3&#8242;);  </p>
<p>step1.bindStep(step2);<br />
step2.bindStep(step3);  </p>
<p>$(&#8217;#step1&#8242;).show();  </p>
<p>but like you it all remains hidden, presumably by the<br />
.step{display: none;}<br />
which I&#8217;m guessing should be over-writen by the<br />
 $(&#8217;#step1&#8242;).show();<br />
but isn&#8217;t!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jackson</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-574</link>
		<dc:creator>Jackson</dc:creator>
		<pubDate>Fri, 27 Nov 2009 12:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-574</guid>
		<description>Quite new to jQuery. Is this supposed to be able to work as a basic "plugin" without any config? I am having difficulty understanding your instructions in the latest version of the script while looking at your example form. Should I be able to link to the plugin script:



Then add the following to the head of the page after the plugin?


  var step1 = $('#step1');
  var step2 = $('#step2');
  var step3 = $('#step3');
  var step4 = $('#step4');
  step1.bindStep(step2);
  step2.bindStep(step3);
  $('#step1').show();


I have labeled all my divs correctly, I am sure of that. Nothing displays at all due to the css.

I suppose all I am asking is, do I need to edit the plugin script at all to make it function in its basic format? Should adding my steps as above be enough to spark some action?

Thanks in advance for your help.

Jack</description>
		<content:encoded><![CDATA[<p>Quite new to jQuery. Is this supposed to be able to work as a basic &#8220;plugin&#8221; without any config? I am having difficulty understanding your instructions in the latest version of the script while looking at your example form. Should I be able to link to the plugin script:</p>
<p>Then add the following to the head of the page after the plugin?</p>
<p>  var step1 = $(&#8217;#step1&#8242;);<br />
  var step2 = $(&#8217;#step2&#8242;);<br />
  var step3 = $(&#8217;#step3&#8242;);<br />
  var step4 = $(&#8217;#step4&#8242;);<br />
  step1.bindStep(step2);<br />
  step2.bindStep(step3);<br />
  $(&#8217;#step1&#8242;).show();</p>
<p>I have labeled all my divs correctly, I am sure of that. Nothing displays at all due to the css.</p>
<p>I suppose all I am asking is, do I need to edit the plugin script at all to make it function in its basic format? Should adding my steps as above be enough to spark some action?</p>
<p>Thanks in advance for your help.</p>
<p>Jack</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FRANCISCO</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-265</link>
		<dc:creator>FRANCISCO</dc:creator>
		<pubDate>Mon, 26 Oct 2009 00:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-265</guid>
		<description>Hi. I'm trying it, but all fields insite "step n" divs ARE NOT SENT to the server.

I tryed to use your demo and insert two fields:
one at beggining of the form (before &#60;step1&#62;)

and another one just before the end of form.

these two fields are sent, but all fields inside step divs are not sent.</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;m trying it, but all fields insite &#8220;step n&#8221; divs ARE NOT SENT to the server.</p>
<p>I tryed to use your demo and insert two fields:<br />
one at beggining of the form (before &lt;step1&gt;)</p>
<p>and another one just before the end of form.</p>
<p>these two fields are sent, but all fields inside step divs are not sent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kilian Güntner</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-256</link>
		<dc:creator>Kilian Güntner</dc:creator>
		<pubDate>Fri, 23 Oct 2009 23:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-256</guid>
		<description>Inspiring, thanks!</description>
		<content:encoded><![CDATA[<p>Inspiring, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olivier</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-184</link>
		<dc:creator>Olivier</dc:creator>
		<pubDate>Wed, 07 Oct 2009 06:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-184</guid>
		<description>Awesome plugin.
Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Awesome plugin.<br />
Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://blog.vokle.com/index.php/2008/08/22/babysteps/#comment-183</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Wed, 07 Oct 2009 00:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vokle.com/?p=26#comment-183</guid>
		<description>Thanks for the plugin !

This works great with jQuery Validate except when I click next step image button, there's only one error message display at a time, the next error message will not displayed until you correct first. I would like to display all error messages at once when step button is clicked. Is there any way I can do that ? 

Any help would be appreciated !

Jack</description>
		<content:encoded><![CDATA[<p>Thanks for the plugin !</p>
<p>This works great with jQuery Validate except when I click next step image button, there&#8217;s only one error message display at a time, the next error message will not displayed until you correct first. I would like to display all error messages at once when step button is clicked. Is there any way I can do that ? </p>
<p>Any help would be appreciated !</p>
<p>Jack</p>
]]></content:encoded>
	</item>
</channel>
</rss>
