<?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: Expanding Form</title>
	<atom:link href="http://www.thatvoodooyoudo.com/javascript/expanding-form/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/</link>
	<description>CSS, JavaScript, and other dark arts</description>
	<lastBuildDate>Sun, 14 Feb 2010 11:48:21 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: janettegirod</title>
		<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/comment-page-1/#comment-103</link>
		<dc:creator>janettegirod</dc:creator>
		<pubDate>Mon, 15 Jan 2007 12:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatvoodooyoudo.com/?p=8#comment-103</guid>
		<description>Hi Victor, 

You&#039;re right, I still haven&#039;t written up this tutorial properly.  (But please look for me in the March issue of .net magazine!)

I had another look at my example and realized that it&#039;s unnecessarily complicated.  I&#039;ve updated the post to show a much more simple example, where the only thing happening is cloning, incrementing, and appending new input fields.  

The JavaScript contains lots of comments to help you keep track of what&#039;s going on.  I hope this is a little more helpful!

Best, 
Janette</description>
		<content:encoded><![CDATA[<p>Hi Victor, </p>
<p>You&#8217;re right, I still haven&#8217;t written up this tutorial properly.  (But please look for me in the March issue of .net magazine!)</p>
<p>I had another look at my example and realized that it&#8217;s unnecessarily complicated.  I&#8217;ve updated the post to show a much more simple example, where the only thing happening is cloning, incrementing, and appending new input fields.  </p>
<p>The JavaScript contains lots of comments to help you keep track of what&#8217;s going on.  I hope this is a little more helpful!</p>
<p>Best,<br />
Janette</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VIctor</title>
		<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/comment-page-1/#comment-102</link>
		<dc:creator>VIctor</dc:creator>
		<pubDate>Mon, 15 Jan 2007 10:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatvoodooyoudo.com/?p=8#comment-102</guid>
		<description>Hello,

The solution is great! More than that - I failed to find anything of a kind on the Net. 
Frankly I&#039;m very interested in actual solution for expanding form ( by cloning a node ) + displaying &#124; hiding fields by request. I tried to find the tutorial you&#039;ve mentioned at &#039;A List Apart&#039;, but with no  success. Apparently you&#039;ve not finished it yet. 

I&#039;m just wondering what is the trick to expand form and display field by demand ( hope it&#039;s not very rude of me to ask ...)
I&#039;m a newbie to JavaScript, so it&#039;s not easy to me to work it out by myself...

Thanks a lot.

Victor.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>The solution is great! More than that &#8211; I failed to find anything of a kind on the Net.<br />
Frankly I&#8217;m very interested in actual solution for expanding form ( by cloning a node ) + displaying | hiding fields by request. I tried to find the tutorial you&#8217;ve mentioned at &#8216;A List Apart&#8217;, but with no  success. Apparently you&#8217;ve not finished it yet. </p>
<p>I&#8217;m just wondering what is the trick to expand form and display field by demand ( hope it&#8217;s not very rude of me to ask &#8230;)<br />
I&#8217;m a newbie to JavaScript, so it&#8217;s not easy to me to work it out by myself&#8230;</p>
<p>Thanks a lot.</p>
<p>Victor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: janettegirod</title>
		<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/comment-page-1/#comment-50</link>
		<dc:creator>janettegirod</dc:creator>
		<pubDate>Wed, 06 Dec 2006 09:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatvoodooyoudo.com/?p=8#comment-50</guid>
		<description>Hi Marino, 

If Javascript is disabled and the user clicks &quot;Add new user&quot;, the button will send a name/value pair to the server for processing.  In this instance, this looks like: 

&lt;code&gt;&lt;input type=&quot;submit&quot; value=&quot;Add new user&quot; name=&quot;add-user-no-js&quot; id=&quot;add-user&quot; /&gt;&lt;/code&gt;
which would send 
&lt;code&gt;add-user-no-js=Add+new+user&lt;/code&gt;
to the server.  Then the server sends back a page with fieldsets for several more applicants.

Janette</description>
		<content:encoded><![CDATA[<p>Hi Marino, </p>
<p>If Javascript is disabled and the user clicks &#8220;Add new user&#8221;, the button will send a name/value pair to the server for processing.  In this instance, this looks like: </p>
<p><code>&lt;input type="submit" value="Add new user" name="add-user-no-js" id="add-user" /&gt;</code><br />
which would send<br />
<code>add-user-no-js=Add+new+user</code><br />
to the server.  Then the server sends back a page with fieldsets for several more applicants.</p>
<p>Janette</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marino Ceccotti</title>
		<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/comment-page-1/#comment-9</link>
		<dc:creator>Marino Ceccotti</dc:creator>
		<pubDate>Tue, 24 Oct 2006 19:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatvoodooyoudo.com/?p=8#comment-9</guid>
		<description>Hello,

I&#039;ve tested the DHTML form. Will it still be fully workable without javascript support? For it is a prerequisite of the AAA acessibility level.

Wiil the &quot;Add new user&quot; be replaced by a query to a server-based script?

Marino

</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;ve tested the DHTML form. Will it still be fully workable without javascript support? For it is a prerequisite of the AAA acessibility level.</p>
<p>Wiil the &#8220;Add new user&#8221; be replaced by a query to a server-based script?</p>
<p>Marino</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Norton</title>
		<link>http://www.thatvoodooyoudo.com/javascript/expanding-form/comment-page-1/#comment-3</link>
		<dc:creator>James Norton</dc:creator>
		<pubDate>Tue, 11 Apr 2006 14:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatvoodooyoudo.com/?p=8#comment-3</guid>
		<description>Very interesting solution to a problem that is bound to become more common.</description>
		<content:encoded><![CDATA[<p>Very interesting solution to a problem that is bound to become more common.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
