<?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: Using Jquery &#8211; Check boxes and Radio buttons</title>
	<atom:link href="http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 06:22:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dc accountant</title>
		<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/comment-page-1/#comment-3805</link>
		<dc:creator>dc accountant</dc:creator>
		<pubDate>Thu, 19 Jan 2012 21:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.techiegyan.com/?p=112#comment-3805</guid>
		<description>I really relate to that post. Thanks for the info.</description>
		<content:encoded><![CDATA[<p>I really relate to that post. Thanks for the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lonelygirl86</title>
		<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/comment-page-1/#comment-3793</link>
		<dc:creator>lonelygirl86</dc:creator>
		<pubDate>Tue, 27 Dec 2011 18:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.techiegyan.com/?p=112#comment-3793</guid>
		<description>Hi, I couldn&#039;t make the code work. I got a syntax error. I have tried all the suggestions in the post above but i couldn&#039;t make it work still.

This is how my code looks now:

$(document).ready(function() {	
	$(&quot;input.contentopt-1&quot;).click(function(){
    if ($(&quot;input.contentopt-1:checked&quot;).val() == &#039;1&#039;)
       alert(&#039;Im at a&#039;);
    else if ($(&quot;input.contentopt-1:checked&quot;).val() == &#039;2&#039;)
         alert(&#039;Im at b&#039;);
    else
         alert(&#039;Im at c&#039;);
	});
});

What could probably be the issue? I have 3 options for the radio buttons. And, i&#039;m using jquery version 1.7.</description>
		<content:encoded><![CDATA[<p>Hi, I couldn&#8217;t make the code work. I got a syntax error. I have tried all the suggestions in the post above but i couldn&#8217;t make it work still.</p>
<p>This is how my code looks now:</p>
<p>$(document).ready(function() {<br />
	$(&#8220;input.contentopt-1&#8243;).click(function(){<br />
    if ($(&#8220;input.contentopt-1:checked&#8221;).val() == &#8217;1&#8242;)<br />
       alert(&#8216;Im at a&#8217;);<br />
    else if ($(&#8220;input.contentopt-1:checked&#8221;).val() == &#8217;2&#8242;)<br />
         alert(&#8216;Im at b&#8217;);<br />
    else<br />
         alert(&#8216;Im at c&#8217;);<br />
	});<br />
});</p>
<p>What could probably be the issue? I have 3 options for the radio buttons. And, i&#8217;m using jquery version 1.7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nyx</title>
		<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/comment-page-1/#comment-3705</link>
		<dc:creator>nyx</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.techiegyan.com/?p=112#comment-3705</guid>
		<description>These two site also helped a lot: 
http://api.jquery.com/checkbox-selector/
http://api.jquery.com/change/</description>
		<content:encoded><![CDATA[<p>These two site also helped a lot:<br />
<a href="http://api.jquery.com/checkbox-selector/" rel="nofollow">http://api.jquery.com/checkbox-selector/</a><br />
<a href="http://api.jquery.com/change/" rel="nofollow">http://api.jquery.com/change/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sipho</title>
		<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/comment-page-1/#comment-3691</link>
		<dc:creator>Sipho</dc:creator>
		<pubDate>Thu, 15 Sep 2011 14:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.techiegyan.com/?p=112#comment-3691</guid>
		<description>Great post.....thanks</description>
		<content:encoded><![CDATA[<p>Great post&#8230;..thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dietmar</title>
		<link>http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/comment-page-1/#comment-3690</link>
		<dc:creator>Dietmar</dc:creator>
		<pubDate>Thu, 15 Sep 2011 09:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.techiegyan.com/?p=112#comment-3690</guid>
		<description>Thanks so much for this small tutorial, you saved my day on developing a backend for a wordpress theme width conditional options depending on other options!!!
::
jQuery(&quot;#checkboxID&quot;).change(function(){
if(jQuery(&quot;#checkboxID&quot;).attr(&quot;checked&quot;) == &quot;checked&quot;)
{
//Do something
}
});
::
Thanx!</description>
		<content:encoded><![CDATA[<p>Thanks so much for this small tutorial, you saved my day on developing a backend for a wordpress theme width conditional options depending on other options!!!<br />
::<br />
jQuery(&#8220;#checkboxID&#8221;).change(function(){<br />
if(jQuery(&#8220;#checkboxID&#8221;).attr(&#8220;checked&#8221;) == &#8220;checked&#8221;)<br />
{<br />
//Do something<br />
}<br />
});<br />
::<br />
Thanx!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

