<?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>Bilgisayar &#187; onay kutusu</title>
	<atom:link href="http://www.bilgisayar.me/index.php/tag/onay-kutusu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bilgisayar.me</link>
	<description></description>
	<lastBuildDate>Wed, 29 Aug 2018 20:31:06 +0000</lastBuildDate>
	<language>tr-TR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.29</generator>
	<item>
		<title>JQuery ile onay kutularının tümünü seçme veya iptal etme</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-onay-kutularinin-tumunu-secme-veya-iptal-etme/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-onay-kutularinin-tumunu-secme-veya-iptal-etme/#comments</comments>
		<pubDate>Thu, 16 Jul 2015 18:43:23 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[onay kutusu]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1146</guid>
		<description><![CDATA[Eğer programcılığa yeni başlayanlardansanız ve &#8220;Tümünü Seç&#8221; onay kutusunu tıklayarak birden fazla onay kutusunu kaldırmak veya seçmek için hızlı bir jQuery kodu arıyorsanız, bu kod işinize yarayacaktır. JQUERY $(document).ready(function() { $(document).on(&#34;click&#34;,&#34;#hepsinisec&#34;,function(){ $(&#039;input:checkbox&#039;).not(this).prop(&#039;checked&#039;, this.checked); });&#46;&#46;&#46;]]></description>
				<content:encoded><![CDATA[<p>Eğer programcılığa yeni başlayanlardansanız ve &#8220;Tümünü Seç&#8221; onay kutusunu tıklayarak birden fazla onay kutusunu kaldırmak veya seçmek için hızlı bir jQuery kodu arıyorsanız, bu kod işinize yarayacaktır.</p>
<p>JQUERY</p>
<pre class="prettyprint linenums" >
$(document).ready(function() {
    $(document).on(&quot;click&quot;,&quot;#hepsinisec&quot;,function(){
        $(&#039;input:checkbox&#039;).not(this).prop(&#039;checked&#039;, this.checked);
    });
});
</pre>
<p>HTML</p>
<pre class="prettyprint linenums" >
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
  &lt;thead&gt;
    &lt;tr&gt;
    &lt;th width=&quot;5%&quot;&gt;&lt;input type=&quot;checkbox&quot; name=&quot;hepsinisec&quot; id=&quot;hepsinisec&quot; /&gt;&lt;/th&gt;
    &lt;th width=&quot;5%&quot;&gt;NO&lt;/th&gt;
    &lt;th width=&quot;23%&quot;&gt;Isim&lt;/th&gt;
    &lt;th width=&quot;67%&quot;&gt;Soyad&lt;/th&gt;
  &lt;/tr&gt;&lt;/thead&gt;
  &lt;tbody&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;Hakan&lt;/td&gt;
    &lt;td&gt;Atılgan&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;Murat&lt;/td&gt;
    &lt;td&gt;Yalçın&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;3&lt;/td&gt;
    &lt;td&gt;Mustafa&lt;/td&gt;
    &lt;td&gt;Ermiş&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;4&lt;/td&gt;
    &lt;td&gt;Süleyman&lt;/td&gt;
    &lt;td&gt;Solak&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;5&lt;/td&gt;
    &lt;td&gt;Tayyip&lt;/td&gt;
    &lt;td&gt;Erdoğan&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;6&lt;/td&gt;
    &lt;td&gt;Doğan&lt;/td&gt;
    &lt;td&gt;Kartal&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox[]&quot; id=&quot;checkbox[]&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;7&lt;/td&gt;
    &lt;td&gt;&nbsp;&lt;/td&gt;
    &lt;td&gt;&nbsp;&lt;/td&gt;
  &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-onay-kutularinin-tumunu-secme-veya-iptal-etme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
