<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Element Design &#187; select all</title>
	<atom:link href="http://elementdesignllc.com/tag/select-all/feed/" rel="self" type="application/rss+xml" />
	<link>http://elementdesignllc.com</link>
	<description></description>
	<lastBuildDate>Fri, 11 Jun 2010 13:37:49 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Easiest Way to Select All Checkboxes with jQuery</title>
		<link>http://elementdesignllc.com/2009/12/jquery-select-all-checkboxes/</link>
		<comments>http://elementdesignllc.com/2009/12/jquery-select-all-checkboxes/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:57:11 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[select all]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=438</guid>
		<description><![CDATA[After looking at many code samples online that were unnecessarily complex I&#8217;ve come up with my own simple method of selecting all checkboxes on a page:

$(&#34;:checkbox&#34;).attr(&#34;checked&#34;, true);

You can change the selector to target certain groups of checkboxes.
To deselect all checkboxes, simply change the &#8220;true&#8221; to &#8220;false&#8221;:

$(&#34;:checkbox&#34;).attr(&#34;checked&#34;, false);

]]></description>
			<content:encoded><![CDATA[<p>After looking at many code samples online that were unnecessarily complex I&#8217;ve come up with my own simple method of selecting all checkboxes on a page:</p>
<pre class="brush: jscript;">
$(&quot;:checkbox&quot;).attr(&quot;checked&quot;, true);
</pre>
<p>You can change the selector to target certain groups of checkboxes.</p>
<p>To deselect all checkboxes, simply change the &#8220;true&#8221; to &#8220;false&#8221;:</p>
<pre class="brush: jscript;">
$(&quot;:checkbox&quot;).attr(&quot;checked&quot;, false);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/12/jquery-select-all-checkboxes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
