<?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: Copy Form Input Data to Another Input Field with jQuery</title>
	<atom:link href="http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/</link>
	<description>Your Web Development Source</description>
	<lastBuildDate>Sun, 05 Sep 2010 13:36:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: resume maker</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-773</link>
		<dc:creator>resume maker</dc:creator>
		<pubDate>Wed, 18 Aug 2010 22:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-773</guid>
		<description>i appreciate beneficial post. I had been delighted once i read through ones piece of writing and have absolutely made an important membership to it. Make sure you revise this article when you&#039;re able to as I&#039;d like more information.</description>
		<content:encoded><![CDATA[<p>i appreciate beneficial post. I had been delighted once i read through ones piece of writing and have absolutely made an important membership to it. Make sure you revise this article when you&#8217;re able to as I&#8217;d like more information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maurits</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-745</link>
		<dc:creator>Maurits</dc:creator>
		<pubDate>Wed, 14 Apr 2010 18:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-745</guid>
		<description>sorry here&#039;s the whole snippet
$(&quot;input#vertfin&quot;).click(function(){ 
        if ($(&quot;input#vertfin&quot;).is(&#039;:checked&#039;)) 
        { 
            // Checked, copy values
			
			 var value;
  			 value = $(&quot;input#c_aanhef1:checked&quot;).val();
			 

			
			if (value == &#039;Dhr.&#039;)
				{
					$(&quot;input#c_aanhefdhr3&quot;).attr(&quot;checked&quot;, true)
					
				}
				else
				{
					
					$(&quot;input#c_aanhefmevr3&quot;).attr(&quot;checked&quot;, true)
					
				}
			

            
            $(&quot;input#c_naam3&quot;).val($(&quot;input#c_naam1&quot;).val()); 
            $(&quot;input#c_achternaam3&quot;).val($(&quot;input#c_achternaam1&quot;).val());
			$(&quot;input#c_email3&quot;).val($(&quot;input#c_email1&quot;).val()); 
            $(&quot;input#c_adres3&quot;).val($(&quot;input#c_adres1&quot;).val()); 
            $(&quot;input#c_postcode3&quot;).val($(&quot;input#c_postcode1&quot;).val());
			$(&quot;input#c_plaats3&quot;).val($(&quot;input#c_plaats1&quot;).val());
			$(&quot;input#c_telefoon1_3&quot;).val($(&quot;input#c_telefoon1_1&quot;).val()); 
            $(&quot;input#c_telefoon2_3&quot;).val($(&quot;input#c_telefoon2_1&quot;).val());
			$(&quot;input#c_relatie3&quot;).val($(&quot;input#c_relatie1&quot;).val());
        } 
        else 
        { 
            // Clear on uncheck 
           
            
            $(&quot;input#c_naam3&quot;).val(&quot;&quot;); 
            $(&quot;input#c_achternaam3&quot;).val(&quot;&quot;); 
			$(&quot;input#c_email3&quot;).val(&quot;&quot;);  
            $(&quot;input#c_adres3&quot;).val(&quot;&quot;);  
            $(&quot;input#c_postcode3&quot;).val(&quot;&quot;); 
			$(&quot;input#c_plaats3&quot;).val(&quot;&quot;); 
			$(&quot;input#c_telefoon1_3&quot;).val(&quot;&quot;); 
            $(&quot;input#c_telefoon2_3&quot;).val(&quot;&quot;); 
			$(&quot;input#c_relatie3&quot;).val(&quot;&quot;);  
        } 
    });</description>
		<content:encoded><![CDATA[<p>sorry here&#8217;s the whole snippet<br />
$(&#8220;input#vertfin&#8221;).click(function(){<br />
        if ($(&#8220;input#vertfin&#8221;).is(&#8216;:checked&#8217;))<br />
        {<br />
            // Checked, copy values</p>
<p>			 var value;<br />
  			 value = $(&#8220;input#c_aanhef1:checked&#8221;).val();</p>
<p>			if (value == &#8216;Dhr.&#8217;)<br />
				{<br />
					$(&#8220;input#c_aanhefdhr3&#8243;).attr(&#8220;checked&#8221;, true)</p>
<p>				}<br />
				else<br />
				{</p>
<p>					$(&#8220;input#c_aanhefmevr3&#8243;).attr(&#8220;checked&#8221;, true)</p>
<p>				}</p>
<p>            $(&#8220;input#c_naam3&#8243;).val($(&#8220;input#c_naam1&#8243;).val());<br />
            $(&#8220;input#c_achternaam3&#8243;).val($(&#8220;input#c_achternaam1&#8243;).val());<br />
			$(&#8220;input#c_email3&#8243;).val($(&#8220;input#c_email1&#8243;).val());<br />
            $(&#8220;input#c_adres3&#8243;).val($(&#8220;input#c_adres1&#8243;).val());<br />
            $(&#8220;input#c_postcode3&#8243;).val($(&#8220;input#c_postcode1&#8243;).val());<br />
			$(&#8220;input#c_plaats3&#8243;).val($(&#8220;input#c_plaats1&#8243;).val());<br />
			$(&#8220;input#c_telefoon1_3&#8243;).val($(&#8220;input#c_telefoon1_1&#8243;).val());<br />
            $(&#8220;input#c_telefoon2_3&#8243;).val($(&#8220;input#c_telefoon2_1&#8243;).val());<br />
			$(&#8220;input#c_relatie3&#8243;).val($(&#8220;input#c_relatie1&#8243;).val());<br />
        }<br />
        else<br />
        {<br />
            // Clear on uncheck </p>
<p>            $(&#8220;input#c_naam3&#8243;).val(&#8220;&#8221;);<br />
            $(&#8220;input#c_achternaam3&#8243;).val(&#8220;&#8221;);<br />
			$(&#8220;input#c_email3&#8243;).val(&#8220;&#8221;);<br />
            $(&#8220;input#c_adres3&#8243;).val(&#8220;&#8221;);<br />
            $(&#8220;input#c_postcode3&#8243;).val(&#8220;&#8221;);<br />
			$(&#8220;input#c_plaats3&#8243;).val(&#8220;&#8221;);<br />
			$(&#8220;input#c_telefoon1_3&#8243;).val(&#8220;&#8221;);<br />
            $(&#8220;input#c_telefoon2_3&#8243;).val(&#8220;&#8221;);<br />
			$(&#8220;input#c_relatie3&#8243;).val(&#8220;&#8221;);<br />
        }<br />
    });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maurits</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-744</link>
		<dc:creator>Maurits</dc:creator>
		<pubDate>Wed, 14 Apr 2010 18:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-744</guid>
		<description>thanks got a question.
 I tried to copy radio checked fields but this is partly working since it deselcts the current selected radio field.
var value;
  			 value = $(&quot;input#c_aanhef1:checked&quot;).val();
			 

			
			if (value == &#039;Dhr.&#039;)
				{
					$(&quot;input#c_aanhefdhr3&quot;).attr(&quot;checked&quot;, true)
					
				}
				else
				{
					
					$(&quot;input#c_aanhefmevr3&quot;).attr(&quot;checked&quot;, true)
					
				}</description>
		<content:encoded><![CDATA[<p>thanks got a question.<br />
 I tried to copy radio checked fields but this is partly working since it deselcts the current selected radio field.<br />
var value;<br />
  			 value = $(&#8220;input#c_aanhef1:checked&#8221;).val();</p>
<p>			if (value == &#8216;Dhr.&#8217;)<br />
				{<br />
					$(&#8220;input#c_aanhefdhr3&#8243;).attr(&#8220;checked&#8221;, true)</p>
<p>				}<br />
				else<br />
				{</p>
<p>					$(&#8220;input#c_aanhefmevr3&#8243;).attr(&#8220;checked&#8221;, true)</p>
<p>				}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Maletsky</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-743</link>
		<dc:creator>Jason Maletsky</dc:creator>
		<pubDate>Wed, 07 Apr 2010 04:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-743</guid>
		<description>On the following example:
http://websitebuildersresource.com/demos/jquery-select-html-manipulation/multiple-post.php

Within the getSubs() JS function you can change the following line to point to any &lt;select&gt;

// Set the selected value 
$(&quot;select#second_select_id_goes_here&quot;).val(selected);</description>
		<content:encoded><![CDATA[<p>On the following example:<br />
<a href="http://websitebuildersresource.com/demos/jquery-select-html-manipulation/multiple-post.php">http://websitebuildersresource.com/demos/jquery-select-html-manipulation/multiple-post.php</a></p>
<p>Within the getSubs() JS function you can change the following line to point to any &lt;select&gt;</p>
<p>// Set the selected value<br />
$(&#8220;select#second_select_id_goes_here&#8221;).val(selected);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Gentry</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-742</link>
		<dc:creator>Doug Gentry</dc:creator>
		<pubDate>Mon, 05 Apr 2010 23:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-742</guid>
		<description>This tip page has been great, and I&#039;m about to donate. On the comment/reply having to do with select and pull down menus, you suggested the other page. I went there and couldn&#039;t quite see which of those other examples fit the case. It&#039;s probably right in front of my nose, or shows how my JS is pretty limited. If we use the code you have above the id=&quot;category belongs to the first entry? Where the user makes a choice? Then how/where do I point to the second pull down on the same page? Thanks.</description>
		<content:encoded><![CDATA[<p>This tip page has been great, and I&#8217;m about to donate. On the comment/reply having to do with select and pull down menus, you suggested the other page. I went there and couldn&#8217;t quite see which of those other examples fit the case. It&#8217;s probably right in front of my nose, or shows how my JS is pretty limited. If we use the code you have above the id=&#8221;category belongs to the first entry? Where the user makes a choice? Then how/where do I point to the second pull down on the same page? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-741</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Mon, 05 Apr 2010 19:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-741</guid>
		<description>Thanks for the sample.</description>
		<content:encoded><![CDATA[<p>Thanks for the sample.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Maletsky</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-681</link>
		<dc:creator>Jason Maletsky</dc:creator>
		<pubDate>Sat, 13 Feb 2010 21:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-681</guid>
		<description>You can use this:

$(&quot;select#category&quot;).change(function(){ 
	var post_string = $(this).val(); 
});

For an example check out the &lt;select&gt; post:
http://websitebuildersresource.com/2009/02/07/jquery-select-manipulation-multiple-selects-json-default/</description>
		<content:encoded><![CDATA[<p>You can use this:</p>
<p>$(&#8220;select#category&#8221;).change(function(){<br />
	var post_string = $(this).val();<br />
});</p>
<p>For an example check out the &lt;select&gt; post:<br />
<a href="http://websitebuildersresource.com/2009/02/07/jquery-select-manipulation-multiple-selects-json-default/">http://websitebuildersresource.com/2009/02/07/jquery-select-manipulation-multiple-selects-json-default/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: G</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-672</link>
		<dc:creator>G</dc:creator>
		<pubDate>Sat, 13 Feb 2010 05:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-672</guid>
		<description>Works great but how do you get it to copy a dropdown....say for the country?</description>
		<content:encoded><![CDATA[<p>Works great but how do you get it to copy a dropdown&#8230;.say for the country?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: affiliate.solutions</title>
		<link>http://websitebuildersresource.com/2009/02/05/copy-form-input-data-to-another-input-field-with-jquery/comment-page-1/#comment-201</link>
		<dc:creator>affiliate.solutions</dc:creator>
		<pubDate>Sat, 21 Feb 2009 18:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://websitebuildersresource.com/?p=583#comment-201</guid>
		<description>Very nice information. Check out my blog, I just posted my review of the Awesome free Internet Marketing and SEO tools.
Its a followup to my original post:

http://blogging-to-make-money.com/search-engine-optimization-awesome-new-tools/

Anyways here are the actual reviews and links to the free online tools
 


Thanks and hopefully this will help you along your travels:

http://blogging-to-make-money.com/free-google-internet-marketing-and-search-engine-optimization-tools</description>
		<content:encoded><![CDATA[<p>Very nice information. Check out my blog, I just posted my review of the Awesome free Internet Marketing and SEO tools.<br />
Its a followup to my original post:</p>
<p><a href="http://blogging-to-make-money.com/search-engine-optimization-awesome-new-tools/">http://blogging-to-make-money.com/search-engine-optimization-awesome-new-tools/</a></p>
<p>Anyways here are the actual reviews and links to the free online tools</p>
<p>Thanks and hopefully this will help you along your travels:</p>
<p><a href="http://blogging-to-make-money.com/free-google-internet-marketing-and-search-engine-optimization-tools">http://blogging-to-make-money.com/free-google-internet-marketing-and-search-engine-optimization-tools</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
