<?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: Create Add &amp; Remove Select Lists Using jQuery</title>
	<atom:link href="http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/</link>
	<description>Your Business Catalyst</description>
	<lastBuildDate>Tue, 07 Feb 2012 19:02:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Marty</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-12186</link>
		<dc:creator>Marty</dc:creator>
		<pubDate>Wed, 27 Apr 2011 16:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-12186</guid>
		<description>Hey thanks a lot!, you helped me to find the answer to my problem. I was looking for some solution that would remove a list item which had no id or something that identify it</description>
		<content:encoded><![CDATA[<p>Hey thanks a lot!, you helped me to find the answer to my problem. I was looking for some solution that would remove a list item which had no id or something that identify it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-11665</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Mon, 18 Apr 2011 08:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-11665</guid>
		<description>your welcome</description>
		<content:encoded><![CDATA[<p>your welcome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fatigue</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-11663</link>
		<dc:creator>fatigue</dc:creator>
		<pubDate>Mon, 18 Apr 2011 07:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-11663</guid>
		<description>Thank you for your clear explanation and nice code.</description>
		<content:encoded><![CDATA[<p>Thank you for your clear explanation and nice code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-5539</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 15 Nov 2010 15:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-5539</guid>
		<description>You can use the length property to count the number of options in the select list - e.g
[js]
$(&#039;#select-from option:selected&#039;).each( function() {
			$(&#039;#select-to&#039;).append(&quot;&quot;+$(this).text()+&quot;&quot;);
			$(this).remove();
			var checkLength = $(&#039;#select-to option&#039;).length;
			alert(checkLength);
		});
[/js]
&lt;a href=&quot;http://www.designchemical.com/lab/jquery/demo/jquery_create_add_remove_select_list_3.htm&quot; rel=&quot;nofollow&quot;&gt;See Demo&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You can use the length property to count the number of options in the select list &#8211; e.g</p>
<pre class="brush: jscript; title: ; notranslate">
$('#select-from option:selected').each( function() {
			$('#select-to').append(&quot;&quot;+$(this).text()+&quot;&quot;);
			$(this).remove();
			var checkLength = $('#select-to option').length;
			alert(checkLength);
		});
</pre>
<p><a href="http://www.designchemical.com/lab/jquery/demo/jquery_create_add_remove_select_list_3.htm" rel="nofollow">See Demo</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-5538</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 15 Nov 2010 15:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-5538</guid>
		<description>To get the value of the select options use: 
[js]
$(&#039;#select-to option&#039;).each(function(){
  $(this).val();
});
[/js]</description>
		<content:encoded><![CDATA[<p>To get the value of the select options use: </p>
<pre class="brush: jscript; title: ; notranslate">
$('#select-to option').each(function(){
  $(this).val();
});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathon</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-5537</link>
		<dc:creator>Jonathon</dc:creator>
		<pubDate>Mon, 15 Nov 2010 14:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-5537</guid>
		<description>How do you pull the new values for sending via Jquery ajax, when call via value attribute the value is returned empty.</description>
		<content:encoded><![CDATA[<p>How do you pull the new values for sending via Jquery ajax, when call via value attribute the value is returned empty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathon</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-5532</link>
		<dc:creator>Jonathon</dc:creator>
		<pubDate>Mon, 15 Nov 2010 12:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-5532</guid>
		<description>Nice snippet,

Have you thought of adding a counter to have max list count?  So the user could add a maximum of eight options.

This is something I am working on for adding tags to an article, so the user can choose from a set of pre-defined tags.

If you have a solution let me know.</description>
		<content:encoded><![CDATA[<p>Nice snippet,</p>
<p>Have you thought of adding a counter to have max list count?  So the user could add a maximum of eight options.</p>
<p>This is something I am working on for adding tags to an article, so the user can choose from a set of pre-defined tags.</p>
<p>If you have a solution let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Change Order of Multiple Select Lists Using jQuery « Design Chemical – Web Design, Printing, Packaging &#38; SEO</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/create-add-remove-select-lists-using-jquery/comment-page-1/#comment-1386</link>
		<dc:creator>Change Order of Multiple Select Lists Using jQuery « Design Chemical – Web Design, Printing, Packaging &#38; SEO</dc:creator>
		<pubDate>Fri, 21 May 2010 09:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=437#comment-1386</guid>
		<description>[...] Contacts          &#171; Create Add &amp; Remove Select Lists Using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Contacts          &laquo; Create Add &amp; Remove Select Lists Using jQuery [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

