<?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: Easiest &#8220;check all&#8221; ever with jQuery</title>
	<atom:link href="http://briancray.com/2009/08/06/check-all-jquery-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/</link>
	<description>User Experience Design, Web Development, and Internet Marketing</description>
	<lastBuildDate>Sun, 15 Jan 2012 00:45:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
		<item>
		<title>By: Easiest check all ever with jQuery &#124; jQuery Plugins</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32834</link>
		<dc:creator>Easiest check all ever with jQuery &#124; jQuery Plugins</dc:creator>
		<pubDate>Tue, 06 Dec 2011 09:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32834</guid>
		<description>[...] Dezember 6, 2011 &#124; Von khkDer Software Entwickler Brian Cray bietet unter dem Titel Easiest check all ever with jQuery auf seiner Seite ein jQuery Script an, das auf sehr einfache Weise, mit nur ein paar Zeilen Code, [...]</description>
		<content:encoded><![CDATA[<p>[...] Dezember 6, 2011 | Von khkDer Software Entwickler Brian Cray bietet unter dem Titel Easiest check all ever with jQuery auf seiner Seite ein jQuery Script an, das auf sehr einfache Weise, mit nur ein paar Zeilen Code, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Easiest check all ever with jQuery &#124; jQuery Toolbox</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32811</link>
		<dc:creator>Easiest check all ever with jQuery &#124; jQuery Toolbox</dc:creator>
		<pubDate>Sat, 20 Aug 2011 09:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32811</guid>
		<description>[...] check all ever with jQueryPubliziert 20. August 2011 &#124; Von khk   Unter dem Titel Easiest check all ever with jQuery bietet Brian Cray auf seiner Seiten ein jQuery Script an, das auf sehr einfache Weise das [...]</description>
		<content:encoded><![CDATA[<p>[...] check all ever with jQueryPubliziert 20. August 2011 | Von khk   Unter dem Titel Easiest check all ever with jQuery bietet Brian Cray auf seiner Seiten ein jQuery Script an, das auf sehr einfache Weise das [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery Checkbox select all &#124; Madproject</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32805</link>
		<dc:creator>jQuery Checkbox select all &#124; Madproject</dc:creator>
		<pubDate>Mon, 04 Jul 2011 03:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32805</guid>
		<description>[...] So back to the drawing board or should I say Google. That&#8217;s when I found this gem: http://briancray.com/2009/08/06/check-all-jquery-javascript/ [...]</description>
		<content:encoded><![CDATA[<p>[...] So back to the drawing board or should I say Google. That&#8217;s when I found this gem: <a href="http://briancray.com/2009/08/06/check-all-jquery-javascript/" rel="nofollow">http://briancray.com/2009/08/06/check-all-jquery-javascript/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Check all Checkboxes with jQuery &#124; Michael Bud: My Two Cents</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32750</link>
		<dc:creator>Check all Checkboxes with jQuery &#124; Michael Bud: My Two Cents</dc:creator>
		<pubDate>Mon, 21 Mar 2011 18:23:50 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32750</guid>
		<description>[...] I was searching for a solution to this problem and came upon this post. Most Javascript functions that do this rely on the fact that the input checkboxes all have the same &#8216;name&#8217; property.  This jQuery solution merely requires them to all be in the same FIELDSET.  Clean, simple and effective.  Brilliant solution.  Bravo Brian Cray! [...]</description>
		<content:encoded><![CDATA[<p>[...] I was searching for a solution to this problem and came upon this post. Most Javascript functions that do this rely on the fact that the input checkboxes all have the same &#8216;name&#8217; property.  This jQuery solution merely requires them to all be in the same FIELDSET.  Clean, simple and effective.  Brilliant solution.  Bravo Brian Cray! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herr Marek</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32725</link>
		<dc:creator>Herr Marek</dc:creator>
		<pubDate>Sat, 22 Jan 2011 21:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32725</guid>
		<description>Thanks for this beautiful piece of code!

i have added few more lines to uncheck the &quot;checkall&quot;-Box if one of the children is unchecked.
children must have class &quot;checkone&quot;. I am sure this could be optimized.

$(&#039;.checkall&#039;).click(function () {
		$(this).parents(&#039;fieldset:eq(0)&#039;).find(&#039;:checkbox&#039;).attr(&#039;checked&#039;, this.checked);
	});
	
	$(&#039;.checkone&#039;).click(function () {
		if (!$(this).is(&#039;:checked&#039;)) {
			$(&#039;.checkall&#039;).attr(&#039;checked&#039;, false);
			}
	});</description>
		<content:encoded><![CDATA[<p>Thanks for this beautiful piece of code!</p>
<p>i have added few more lines to uncheck the &#8220;checkall&#8221;-Box if one of the children is unchecked.<br />
children must have class &#8220;checkone&#8221;. I am sure this could be optimized.</p>
<p>$(&#8216;.checkall&#8217;).click(function () {<br />
		$(this).parents(&#8216;fieldset:eq(0)&#8217;).find(&#8216;:checkbox&#8217;).attr(&#8216;checked&#8217;, this.checked);<br />
	});</p>
<p>	$(&#8216;.checkone&#8217;).click(function () {<br />
		if (!$(this).is(&#8216;:checked&#8217;)) {<br />
			$(&#8216;.checkall&#8217;).attr(&#8216;checked&#8217;, false);<br />
			}<br />
	});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vipin</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32705</link>
		<dc:creator>Vipin</dc:creator>
		<pubDate>Fri, 31 Dec 2010 06:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32705</guid>
		<description>if($(&quot;#checkallbox&quot;).attr(&#039;checked&#039;)==true)
		$(&quot;.checkone&quot;).attr(&#039;checked&#039;,&#039;checked&#039;);
	else
		$(&quot;.checkone&quot;).attr(&#039;checked&#039;,&#039;&#039;);</description>
		<content:encoded><![CDATA[<p>if($(&#8220;#checkallbox&#8221;).attr(&#8216;checked&#8217;)==true)<br />
		$(&#8220;.checkone&#8221;).attr(&#8216;checked&#8217;,'checked&#8217;);<br />
	else<br />
		$(&#8220;.checkone&#8221;).attr(&#8216;checked&#8217;,&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Bowen</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32637</link>
		<dc:creator>Pete Bowen</dc:creator>
		<pubDate>Wed, 22 Sep 2010 10:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32637</guid>
		<description>Thanks,

Very useful.</description>
		<content:encoded><![CDATA[<p>Thanks,</p>
<p>Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roel Abasa</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32627</link>
		<dc:creator>Roel Abasa</dc:creator>
		<pubDate>Thu, 16 Sep 2010 07:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32627</guid>
		<description>Cool!

Surely useful for everyone... one thing though.. the parent checkbox should be uncheck automatically if one of the children is uncheck..</description>
		<content:encoded><![CDATA[<p>Cool!</p>
<p>Surely useful for everyone&#8230; one thing though.. the parent checkbox should be uncheck automatically if one of the children is uncheck..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ayel</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32472</link>
		<dc:creator>Ayel</dc:creator>
		<pubDate>Sat, 24 Jul 2010 07:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32472</guid>
		<description>try my code:







$(function () {
						$(&quot;#checkall&quot;).click(function () {
							$(&quot;input:checkbox.checkall&quot;).attr(&quot;checked&quot;, this.checked);
						});
					});</description>
		<content:encoded><![CDATA[<p>try my code:</p>
<p>$(function () {<br />
						$(&#8220;#checkall&#8221;).click(function () {<br />
							$(&#8220;input:checkbox.checkall&#8221;).attr(&#8220;checked&#8221;, this.checked);<br />
						});<br />
					});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor Saint</title>
		<link>http://briancray.com/2009/08/06/check-all-jquery-javascript/#comment-32456</link>
		<dc:creator>Trevor Saint</dc:creator>
		<pubDate>Mon, 12 Jul 2010 15:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://briancray.com/?p=1009#comment-32456</guid>
		<description>Very nice. Thanks for the information.

FYI

I find a regular occurrence when browsing many sites that people don&#039;t seem to care for those without JS. Meaning this check all functionality is cool, and adds extra for those that have JS.

But ideally the approach that I would take is to output the check all checkbox using JS as well. This way functionality is not added that won&#039;t work if the user has turned off JS. 

Simply put. The check all checkbox won&#039;t be shown if JS is turned off. ;).

Just an idea.</description>
		<content:encoded><![CDATA[<p>Very nice. Thanks for the information.</p>
<p>FYI</p>
<p>I find a regular occurrence when browsing many sites that people don&#8217;t seem to care for those without JS. Meaning this check all functionality is cool, and adds extra for those that have JS.</p>
<p>But ideally the approach that I would take is to output the check all checkbox using JS as well. This way functionality is not added that won&#8217;t work if the user has turned off JS. </p>
<p>Simply put. The check all checkbox won&#8217;t be shown if JS is turned off. <img src='http://briancray.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Just an idea.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

