<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Fancy Sliding Form with jQuery</title>
	<atom:link href="http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:26:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: iain</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-414963</link>
		<dc:creator>iain</dc:creator>
		<pubDate>Fri, 27 Jan 2012 16:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-414963</guid>
		<description>Has anyone managed to get the radio validation working.  I tried the earlier code suggestion but it seems to stop the validation working.

Also, if i press return at any point it seems to revert the form back to a blank entry and the user loses all prior inputs.  Is there a way to stop that?</description>
		<content:encoded><![CDATA[<p>Has anyone managed to get the radio validation working.  I tried the earlier code suggestion but it seems to stop the validation working.</p>
<p>Also, if i press return at any point it seems to revert the form back to a blank entry and the user loses all prior inputs.  Is there a way to stop that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iain</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-414944</link>
		<dc:creator>iain</dc:creator>
		<pubDate>Fri, 27 Jan 2012 12:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-414944</guid>
		<description>Script is great.

Quick question - does the form post automatically based on the form action when all the fields are completed, or is some more code needed for the posting action at  when the submit button is pressed?</description>
		<content:encoded><![CDATA[<p>Script is great.</p>
<p>Quick question &#8211; does the form post automatically based on the form action when all the fields are completed, or is some more code needed for the posting action at  when the submit button is pressed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-414852</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 25 Jan 2012 22:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-414852</guid>
		<description>For anybody who was having problems with tabbing because the last form element in their fieldset isn&#039;t an input tag, resulting in halfway displaying the next tab. I could not figure out how to resolve, so I disabled tabbing for all the form elements, and added a next button.  Tabbing is gone, but users an still click through and this way someone doesn&#039;t break it when trying to tab. 

To disable the tabbing, use jquery to set all form inputs tab index to -1. I lifted the next button code from someone on here.</description>
		<content:encoded><![CDATA[<p>For anybody who was having problems with tabbing because the last form element in their fieldset isn&#8217;t an input tag, resulting in halfway displaying the next tab. I could not figure out how to resolve, so I disabled tabbing for all the form elements, and added a next button.  Tabbing is gone, but users an still click through and this way someone doesn&#8217;t break it when trying to tab. </p>
<p>To disable the tabbing, use jquery to set all form inputs tab index to -1. I lifted the next button code from someone on here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jayendra</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-414750</link>
		<dc:creator>jayendra</dc:creator>
		<pubDate>Tue, 24 Jan 2012 10:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-414750</guid>
		<description>Thanks to share this.

Amazing article.</description>
		<content:encoded><![CDATA[<p>Thanks to share this.</p>
<p>Amazing article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-394769</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 13 Jan 2012 14:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-394769</guid>
		<description>With IE6/IE7, it&#039;s deducting a 4px (2px either side) border in the calculation of the width of each page of the form, which means that the end total for the steps will be a few pixels short, which causes the confirmation page to show in the wrong place. To fix it, try adding a border:0; into the .step css

17	.step{
18	    float:left;
19	    width:600px;
20       border:0;
21	}

And that should do the trick. :)</description>
		<content:encoded><![CDATA[<p>With IE6/IE7, it&#8217;s deducting a 4px (2px either side) border in the calculation of the width of each page of the form, which means that the end total for the steps will be a few pixels short, which causes the confirmation page to show in the wrong place. To fix it, try adding a border:0; into the .step css</p>
<p>17	.step{<br />
18	    float:left;<br />
19	    width:600px;<br />
20       border:0;<br />
21	}</p>
<p>And that should do the trick. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-377352</link>
		<dc:creator>Paolo</dc:creator>
		<pubDate>Thu, 05 Jan 2012 14:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-377352</guid>
		<description>Thanks Mary Lou for this awesome codes. I like it! I decided to use this in one of the custom page that I created in my wordpress site. Now the thing is, I can&#039;t get it to work. :-( Any idea how to fix this? Thanks in advance to you and to anyone who will answer me.</description>
		<content:encoded><![CDATA[<p>Thanks Mary Lou for this awesome codes. I like it! I decided to use this in one of the custom page that I created in my wordpress site. Now the thing is, I can&#8217;t get it to work. :-( Any idea how to fix this? Thanks in advance to you and to anyone who will answer me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Masoud</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-352115</link>
		<dc:creator>Masoud</dc:creator>
		<pubDate>Mon, 26 Dec 2011 06:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-352115</guid>
		<description>great tutorial</description>
		<content:encoded><![CDATA[<p>great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ebrahim</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-326700</link>
		<dc:creator>ebrahim</dc:creator>
		<pubDate>Wed, 14 Dec 2011 09:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-326700</guid>
		<description>That is a brilliant peace of work.
Good on ya Mary Lou</description>
		<content:encoded><![CDATA[<p>That is a brilliant peace of work.<br />
Good on ya Mary Lou</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moazzam</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-322977</link>
		<dc:creator>Moazzam</dc:creator>
		<pubDate>Mon, 12 Dec 2011 16:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-322977</guid>
		<description>IE7 making few issues for me.

ul li tabs are disappeared.......... please help.</description>
		<content:encoded><![CDATA[<p>IE7 making few issues for me.</p>
<p>ul li tabs are disappeared&#8230;&#8230;&#8230;. please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peyman</title>
		<link>http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/comment-page-9/#comment-304428</link>
		<dc:creator>Peyman</dc:creator>
		<pubDate>Sat, 03 Dec 2011 20:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2340#comment-304428</guid>
		<description>I love it...</description>
		<content:encoded><![CDATA[<p>I love it&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/feed/ ) in 0.22381 seconds, on Feb 8th, 2012 at 11:23 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 12:23 am UTC -->
