<?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: Use JavaScript to Check/UnCheck Checkboxes</title>
	<atom:link href="http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes/feed" rel="self" type="application/rss+xml" />
	<link>http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes</link>
	<description></description>
	<lastBuildDate>Sun, 21 Mar 2010 09:18:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vivek</title>
		<link>http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes/comment-page-1#comment-2321</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Fri, 19 Dec 2008 18:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://teamtutorials.com/?p=1593#comment-2321</guid>
		<description>function checkAll()
		  {
			  var sek=document.FormName.checkall;
			  if(sek.checked == true)
			  {
				for (var i=0; i&lt;document.FormName.elements.length;i++)
				{
					var e=document.FormName.elements[i];
					if ((e.name != &#039;checkall&#039;) &amp;&amp; (e.type==&#039;checkbox&#039;))
				   {
					  	e.checked=true;
					}
				}			
			}
			else
			{
				for (var i=0; i&lt;document.FormName.elements.length;i++)
				{
					var e=document.FormName.elements[i];
					if ((e.name != &#039;checkall&#039;) &amp;&amp; (e.type==&#039;checkbox&#039;))
				   {
					  	e.checked=false;
					}
				}		
			}
		}</description>
		<content:encoded><![CDATA[<p>function checkAll()<br />
		  {<br />
			  var sek=document.FormName.checkall;<br />
			  if(sek.checked == true)<br />
			  {<br />
				for (var i=0; i&lt;document.FormName.elements.length;i++)<br />
				{<br />
					var e=document.FormName.elements[i];<br />
					if ((e.name != &#8216;checkall&#8217;) &amp;&amp; (e.type==&#8217;checkbox&#8217;))<br />
				   {<br />
					  	e.checked=true;<br />
					}<br />
				}<br />
			}<br />
			else<br />
			{<br />
				for (var i=0; i&lt;document.FormName.elements.length;i++)<br />
				{<br />
					var e=document.FormName.elements[i];<br />
					if ((e.name != &#8216;checkall&#8217;) &amp;&amp; (e.type==&#8217;checkbox&#8217;))<br />
				   {<br />
					  	e.checked=false;<br />
					}<br />
				}<br />
			}<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gus</title>
		<link>http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes/comment-page-1#comment-1825</link>
		<dc:creator>gus</dc:creator>
		<pubDate>Mon, 27 Oct 2008 23:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://teamtutorials.com/?p=1593#comment-1825</guid>
		<description>I&#039;d like a checkbox that UNCHECKS the other checkboxes in a single array.  I&#039;m also a bit confused since this javascript includes the form name.  Does that mean that it will also uncheck objects in separate arrays that exist elsewhere in the same form?</description>
		<content:encoded><![CDATA[<p>I&#8217;d like a checkbox that UNCHECKS the other checkboxes in a single array.  I&#8217;m also a bit confused since this javascript includes the form name.  Does that mean that it will also uncheck objects in separate arrays that exist elsewhere in the same form?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandra</title>
		<link>http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes/comment-page-1#comment-1716</link>
		<dc:creator>sandra</dc:creator>
		<pubDate>Fri, 26 Sep 2008 06:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://teamtutorials.com/?p=1593#comment-1716</guid>
		<description>Hi!! Thank you so much for the tutorial!! This is very much helpful!!:)</description>
		<content:encoded><![CDATA[<p>Hi!! Thank you so much for the tutorial!! This is very much helpful!!:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Use JavaScript to Check/UnCheck Checkboxes - Blue Box Sols</title>
		<link>http://teamtutorials.com/web-development-tutorials/use-javascript-to-checkuncheck-checkboxes/comment-page-1#comment-1644</link>
		<dc:creator>Use JavaScript to Check/UnCheck Checkboxes - Blue Box Sols</dc:creator>
		<pubDate>Tue, 09 Sep 2008 15:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://teamtutorials.com/?p=1593#comment-1644</guid>
		<description>[...] to use a single click on a button to check all objects and un-check all objects using JavaScript.   view plaincopy to [...]</description>
		<content:encoded><![CDATA[<p>[...] to use a single click on a button to check all objects and un-check all objects using JavaScript.   view plaincopy to [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
