<?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: Selecting radio button in JavaScript with jQuery</title>
	<atom:link href="http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/</link>
	<description>Tech in a Galagzee, Not So Far Away.</description>
	<lastBuildDate>Tue, 27 Jul 2010 20:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Andrew Kaser</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-24737</link>
		<dc:creator>Andrew Kaser</dc:creator>
		<pubDate>Sat, 17 Jul 2010 12:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-24737</guid>
		<description>Thanks for this! A Friend of mine was having trouble with this and I was able to use this post to teach myself something new, and pass it on to another programmer.

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks for this! A Friend of mine was having trouble with this and I was able to use this post to teach myself something new, and pass it on to another programmer.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-24356</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 05 Jul 2010 17:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-24356</guid>
		<description>@Rio : I didn&#039;t think about this one. It&#039;s what I needed, thanks.</description>
		<content:encoded><![CDATA[<p>@Rio : I didn&#8217;t think about this one. It&#8217;s what I needed, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rio</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-21799</link>
		<dc:creator>Rio</dc:creator>
		<pubDate>Mon, 05 Apr 2010 18:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-21799</guid>
		<description>Or you could just use

$(this).click();</description>
		<content:encoded><![CDATA[<p>Or you could just use</p>
<p>$(this).click();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoaoLuiz</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-20868</link>
		<dc:creator>JoaoLuiz</dc:creator>
		<pubDate>Wed, 10 Mar 2010 18:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-20868</guid>
		<description>Reply to Martyn. To use on a button and a group of radios, use: $(&#039;input[name=X_Y_Z][value=A_B_C]&#039;).attr(&#039;checked&#039;,&#039;checked&#039;)</description>
		<content:encoded><![CDATA[<p>Reply to Martyn. To use on a button and a group of radios, use: $(&#8216;input[name=X_Y_Z][value=A_B_C]&#8216;).attr(&#8216;checked&#8217;,'checked&#8217;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kev</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-18489</link>
		<dc:creator>Kev</dc:creator>
		<pubDate>Sat, 23 Jan 2010 11:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-18489</guid>
		<description>Hi, 

Thanks for this, I always forget how to do it and you got me out of a really tight squeeze!</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Thanks for this, I always forget how to do it and you got me out of a really tight squeeze!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martyn</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-12607</link>
		<dc:creator>Martyn</dc:creator>
		<pubDate>Tue, 06 Oct 2009 21:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-12607</guid>
		<description>To set a button, you may use the following method:

		$(&#039;input[name=&quot;us_edition&quot;]&#039;).each(function() {
			if($(this).val() == &quot;digi&quot;) {
				$(this).attr(&quot;checked&quot;,&quot;checked&quot;);
			}
		});

This will set the radio button to be checked for the &quot;digi&quot; value.</description>
		<content:encoded><![CDATA[<p>To set a button, you may use the following method:</p>
<p>		$(&#8216;input[name="us_edition"]&#8216;).each(function() {<br />
			if($(this).val() == &#8220;digi&#8221;) {<br />
				$(this).attr(&#8220;checked&#8221;,&#8221;checked&#8221;);<br />
			}<br />
		});</p>
<p>This will set the radio button to be checked for the &#8220;digi&#8221; value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DZ</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-9367</link>
		<dc:creator>DZ</dc:creator>
		<pubDate>Wed, 15 Jul 2009 14:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-9367</guid>
		<description>Nice, was looking for &quot;jquery setting radio button checked&quot; in google, yours was one of the first that came up. Thanks!</description>
		<content:encoded><![CDATA[<p>Nice, was looking for &#8220;jquery setting radio button checked&#8221; in google, yours was one of the first that came up. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-4212</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Mon, 06 Apr 2009 22:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-4212</guid>
		<description>The @ is removed for the latest version of jQuery. Listed in the release notes, Marcello.</description>
		<content:encoded><![CDATA[<p>The @ is removed for the latest version of jQuery. Listed in the release notes, Marcello.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ville Walveranta</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-4179</link>
		<dc:creator>Ville Walveranta</dc:creator>
		<pubDate>Mon, 06 Apr 2009 07:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-4179</guid>
		<description>Marcello, thanks for pointing that out!</description>
		<content:encoded><![CDATA[<p>Marcello, thanks for pointing that out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcello</title>
		<link>http://my.galagzee.com/2007/09/21/selecting-radio-button-in-javascript-with-jquery/comment-page-1/#comment-4178</link>
		<dc:creator>Marcello</dc:creator>
		<pubDate>Mon, 06 Apr 2009 07:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://my.galagzee.com/index.php/2007/09/21/selecting-radio-button-in-javascript-with-jquery/#comment-4178</guid>
		<description>Arjan is using a deprecated way to point at an object via its name. I did the same mistake, the correct code is:

var selected = $(”input[name=&#039;us_edition&#039;]:checked”).val();

without the @

wasted like three hours figuring that out...</description>
		<content:encoded><![CDATA[<p>Arjan is using a deprecated way to point at an object via its name. I did the same mistake, the correct code is:</p>
<p>var selected = $(”input[name='us_edition']:checked”).val();</p>
<p>without the @</p>
<p>wasted like three hours figuring that out&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
