<?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; jquery</title>
	<atom:link href="http://www.bilgisayar.me/index.php/tag/jquery/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 HTML textarea etiketinde kelime sınırlaması</title>
		<link>http://www.bilgisayar.me/index.php/2015/08/05/jquery-ile-html-textarea-etiketinde-kelime-sinirlamasi/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/08/05/jquery-ile-html-textarea-etiketinde-kelime-sinirlamasi/#comments</comments>
		<pubDate>Wed, 05 Aug 2015 18:19:02 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1482</guid>
		<description><![CDATA[Sitenizde kullanacabileceğiniz kopyala yapıştır tarzında bir textarea etiketinde kelime sınırlaması örneği&#160;<a href="http://www.bilgisayar.me/demo/textareakelimesinirlama/index.php" target="_blank" class="ozet demo_color">DEMO</a>]]></description>
				<content:encoded><![CDATA[<p>Jquery eklentisini sayfanıza eklemeyi unutmayın.</p>
<p></p>
<div style="text-align:center; width:100%">
<a href="http://www.bilgisayar.me/demo/textareakelimesinirlama/index.php" target="_blank" class="buttons btn_red left"><span class="left">Demo</span></a>
</div>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>HTML</p>
<pre class="prettyprint linenums" >
&lt;textarea name=&quot;textarea_etiketi&quot; id=&quot;textarea_etiketi&quot; class=&quot;form-control karakter&quot;&gt;&lt;/textarea&gt;
&lt;div class=&quot;kalan&quot;&gt;
    Kalan &lt;span id=&quot;kalan_karakter&quot;&gt;&lt;/span&gt; karakter sayısı
&lt;/div&gt;
</pre>
<p>JQuery</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
var max_karakter_sayisi = 500;
(function($){
    $(&quot;#kalan_karakter&quot;).html(max_karakter_sayisi);
    $(&#039;#textarea_etiketi&#039;).bind(&#039;input propertychange&#039;, function() {
        karakterSay();
    });
    $(&#039;#textarea_etiketi&#039;).bind(&#039;keyup&#039;, null, function(e) {
        karakterSay();
    });
})(jQuery);

function karakterSay(){
    var textareaetiketi = $(&quot;#textarea_etiketi&quot;).val();
    var textareaetiketi_uzunluk = textareaetiketi.length;
    var kalan_karakter = max_karakter_sayisi - textareaetiketi_uzunluk;
    if(textareaetiketi_uzunluk &lt;= max_karakter_sayisi)
    {
        $(&quot;#kalan_karakter&quot;)
			.html(kalan_karakter)
			.css(&quot;color&quot;, (kalan_karakter &lt;=10 ? &quot;#000000&quot; : &quot;#666&quot;))
			.css(&quot;font-weight&quot;, &#039;normal&#039;);
    }
    else
    {
        $(&quot;#kalan_karakter&quot;)
			.html(kalan_karakter)
			.css(&quot;color&quot;, &quot;#FF0000&quot;).css(&quot;font-weight&quot;, &#039;bold&#039;);
    }
}
&lt;/script&gt;
</pre>
<p>Hepsi bir arada</p>
<pre class="prettyprint linenums" >
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;JQuery ile HTML textarea etiketinde kelime sınırlaması&lt;/title&gt;
&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;textarea name=&quot;textarea_etiketi&quot; id=&quot;textarea_etiketi&quot; style=&quot;width:99%; padding:5px; height:auto; line-height:1.6em;&quot;&gt;&lt;/textarea&gt;
&lt;div class=&quot;kalan&quot;&gt; Kalan &lt;span id=&quot;kalan_karakter&quot;&gt;&lt;/span&gt; karakter sayısı &lt;/div&gt;
&lt;script&gt;
var max_karakter_sayisi = 500;
(function($){
    $(&quot;#kalan_karakter&quot;).html(max_karakter_sayisi);
    $(&#039;#textarea_etiketi&#039;).bind(&#039;input propertychange&#039;, function() {
        karakterSay();
    });
    $(&#039;#textarea_etiketi&#039;).bind(&#039;keyup&#039;, null, function(e) {
        karakterSay();
    });
})(jQuery);

function karakterSay(){
    var textareaetiketi = $(&quot;#textarea_etiketi&quot;).val();
    var textareaetiketi_uzunluk = textareaetiketi.length;
    var kalan_karakter = max_karakter_sayisi - textareaetiketi_uzunluk;
    if(textareaetiketi_uzunluk &lt;= max_karakter_sayisi)
    {
        $(&quot;#kalan_karakter&quot;)
			.html(kalan_karakter)
			.css(&quot;color&quot;, (kalan_karakter &lt;=10 ? &quot;#000000&quot; : &quot;#666&quot;))
			.css(&quot;font-weight&quot;, &#039;normal&#039;);
    }
    else
    {
        $(&quot;#kalan_karakter&quot;)
			.html(kalan_karakter)
			.css(&quot;color&quot;, &quot;#FF0000&quot;).css(&quot;font-weight&quot;, &#039;bold&#039;);
    }
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/08/05/jquery-ile-html-textarea-etiketinde-kelime-sinirlamasi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP/MYSQL ve JQuery ile Basit Dosya Yönetici Uygulaması</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/31/phpmysql-ve-jquery-ile-basit-dosya-yonetici-uygulamasi/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/31/phpmysql-ve-jquery-ile-basit-dosya-yonetici-uygulamasi/#comments</comments>
		<pubDate>Fri, 31 Jul 2015 22:41:45 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1427</guid>
		<description><![CDATA[PHP/ySQL uygulamalarınızda kullanabileceğiniz basit dosya yönetici uygulaması. <a href="https://app.box.com/s/csym5n2j0x5h4bnbaxb6zwhommm4m4ih"  target="_blank" class="ozet yukle_color">YÜKLE</a>]]></description>
				<content:encoded><![CDATA[<p></p>
<div style="text-align:center; width:100%">
<a href="https://app.box.com/s/csym5n2j0x5h4bnbaxb6zwhommm4m4ih" target="_blank" class="buttons btn_blue left"><span class="left"><i class="fa fa-download"></i> YÜKLE</span></a>
</div>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<h5>Özellikler:</h3>
<ul>
<li>Klasör oluşturma</li>
<li>Dropzone Jquery eklentisi ile sabit diske dosya yükleme</li>
<li>Çoklu veya tek dosya silme</li>
</ul>
<h5>Ekran Görüntüleri:</h3>
<p><a href="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici.jpg" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici.jpg" alt="dosya_yonetici" width="700" height="340" class="alignnone size-full wp-image-1428" /></a></p>
<p><a href="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_1.jpg" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_1.jpg" alt="dosya_yonetici_1" width="900" height="194" class="alignnone size-full wp-image-1434" /></a></p>
<p><a href="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_2.jpg" data-rel="lightbox-image-2" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_2.jpg" alt="dosya_yonetici_2" width="720" height="470" class="alignnone size-large wp-image-1435" /></a></p>
<p><a href="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_3.jpg" data-rel="lightbox-image-3" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/07/dosya_yonetici_3.jpg" alt="dosya_yonetici_3" width="720" height="261" class="alignnone size-large wp-image-1436" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/31/phpmysql-ve-jquery-ile-basit-dosya-yonetici-uygulamasi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery ile bir dizeden dizi oluşturma</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-bir-dizeden-dizi-olusturma/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-bir-dizeden-dizi-olusturma/#comments</comments>
		<pubDate>Wed, 29 Jul 2015 20:12:55 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[dizeler]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1347</guid>
		<description><![CDATA[jQuery split() işlevi ile bir dizeden(string) bir dizi(array), jQuery join() işlevi ile de tekrardan bir diziyi bir dizeye dönüştürmek oldukça basit bir işlemdir.]]></description>
				<content:encoded><![CDATA[<p>jQuery split() işlevi ile bir dizeden(string) bir dizi(array), jQuery join() işlevi ile de tekrardan bir diziyi bir dizeye dönüştürmek oldukça basit bir işlemdir.</p>
<p>Arraylar(dizi) hakkında bilgilerinizi tazelemek için <a href="http://php.net/manual/tr/language.types.array.php" target="_blank">burayı <i class="fa fa-external-link"></i></a> tıklayın.</p>
<h4>split() işlevi</h4>
<p>Örneğin elimizde aşağıdaki gibi bir dizemiz olsun.</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
var dize = &quot;a,b,c,s,t,u,p,d&quot;;
var dizi = dize.split(&#039;,&#039;);
&lt;/script&gt;
</pre>
<p>Diziyi döngü içine almak istersek</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
$.each(dizi, function(index, value) { 
    alert(index + &#039;: &#039; + value);
});
&lt;/script&gt;
</pre>
<p>Dizideki değerlere tek tek ulaşmak için</p>
<pre class="prettyprint linenums" >
// diziler 0&#039; dan başlarlar
dizi[0]; // a 
dizi[3]; // s
dizi[5]; // u
</pre>
<p>Bazı dize örnekleri</p>
<pre class="prettyprint linenums" >
var dize = &quot;a b c s t u p d&quot;;
var dizi = dize.split(&#039; &#039;);

var dize = &quot;a:b:c:s:t:u:p:d&quot;;
var dizi = dize.split(&#039;:&#039;);
</pre>
<h4>join() işlevi</h4>
<p>Bir diziyi dizeye dönüştürmek için kullanılır.</p>
<pre class="prettyprint linenums" >
var dizi= new Array(&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;E&quot;, &quot;F&quot;, &quot;Z&quot;, &quot;S&quot;, &quot;D&quot;); // dizi oluştur
var dize= dizi.join(&#039;,&#039;); // diziyi dizeye dönüştür
alert(dize); // dizemiz A,B,C,E,F,Z,S,D 
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-bir-dizeden-dizi-olusturma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery ile HTML seçme kutusuna  bir değer ekleme</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-html-secme-kutusuna-bir-deger-ekleme/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-html-secme-kutusuna-bir-deger-ekleme/#comments</comments>
		<pubDate>Wed, 29 Jul 2015 19:14:44 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[seçenek kutusu]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1320</guid>
		<description><![CDATA[Bu yazımızda jQuery ile HTML seçme kutusuna yeni bir seçenek eklemek nasıl olur onu öğrenecegiz. <a href="http://www.bilgisayar.me/demo/addoptionselectbox/index.php" class="ozet demo_color" target="_blank">DEMO</a>]]></description>
				<content:encoded><![CDATA[<p>Bu yazımızda jQuery ile HTML seçme kutusuna yeni bir seçenek eklemek nasıl olur onu öğrenecegiz.<br />
&nbsp;</p>
<div style="width: 100%; text-align: center;"><a href="http://www.bilgisayar.me/demo/addoptionselectbox/index.php" target="_blank" class="buttons btn_red left"><span class="left">Demo</span></a></div>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
<a href="http://www.bilgisayar.me/wp-content/uploads/2015/07/secenekkutusu.jpg" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/07/secenekkutusu.jpg" alt="secenekkutusu" width="505" height="380" class="alignnone size-full wp-image-1341" /></a><br />
&nbsp;<br />
jQuery ile HTML seçme kutusuna yeni bir seçenek eklemek için önce seçenek kutumuzu oluşturalım.</p>
<pre class="prettyprint linenums" >
&lt;select name=&quot;box-1&quot; id=&quot;box-1&quot; class=&quot;form-control&quot;&gt;
    &lt;option val=&quot;MYSQL&quot;&gt;MYSQL&lt;/option&gt;
    &lt;option val=&quot;PHP&quot;&gt;PHP&lt;/option&gt;
    &lt;option val=&quot;JQuery&quot;&gt;JQuery&lt;/option&gt;
    &lt;option val=&quot;HTML&quot;&gt;HTML&lt;/option&gt;
    &lt;option val=&quot;CSS3&quot;&gt;CSS3&lt;/option&gt;
&lt;/select&gt;
&lt;input name=&quot;yeniekle&quot;  id=&quot;yeniekle&quot; type=&quot;text&quot; class=&quot;form-control&quot; placeholder=&quot;eklenecek kelime&quot;/&gt;
&lt;button name=&quot;secekle&quot; id=&quot;secekle&quot; type=&quot;button&quot; class=&quot;btn btn-info&quot;&gt;Yeni Ekle&lt;/button&gt;
</pre>
<p>Daha sonra JQuery kodu ile istenilen kelimeyi seçenek kutumuza ekleyelim.</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
(function($){
    $(document).on(&quot;click&quot;, &quot;#secekle&quot;,function(){
        var yeniekle = $(&quot;#yeniekle&quot;).val();
        if (yeniekle !=&#039;&#039;){
            $(&#039;#box-1&#039;).append(&#039;&lt;option value=&quot;&#039; + yeniekle + &#039;&quot; selected=&quot;selected&quot;&gt;&#039; + yeniekle + &#039;&lt;/option&gt;&#039;);
            $(&quot;#yeniekle&quot;).val(&#039;&#039;);
        } else {
            alert (&quot;Eklenecek Kelimeyi Girin&quot;);	
            return false;
        }
    });
})(jQuery);
&lt;/script&gt;
</pre>
<p>Hepsi bir arada</p>
<pre class="prettyprint linenums" >
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;Bilgisayar.me&lt;/title&gt;
&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div&gt;
&lt;select name=&quot;box-1&quot; id=&quot;box-1&quot; class=&quot;form-control&quot;&gt;
    &lt;option val=&quot;MYSQL&quot;&gt;MYSQL&lt;/option&gt;
    &lt;option val=&quot;PHP&quot;&gt;PHP&lt;/option&gt;
    &lt;option val=&quot;JQuery&quot;&gt;JQuery&lt;/option&gt;
    &lt;option val=&quot;HTML&quot;&gt;HTML&lt;/option&gt;
    &lt;option val=&quot;CSS3&quot;&gt;CSS3&lt;/option&gt;
&lt;/select&gt;
&lt;input name=&quot;yeniekle&quot;  id=&quot;yeniekle&quot; type=&quot;text&quot; class=&quot;form-control&quot; placeholder=&quot;eklenecek kelime&quot;/&gt;
&lt;button name=&quot;secekle&quot; id=&quot;secekle&quot; type=&quot;button&quot; class=&quot;btn btn-info&quot;&gt;Yeni Ekle&lt;/button&gt;
&lt;/div&gt;
&lt;script&gt;
(function($){
    $(document).on(&quot;click&quot;, &quot;#secekle&quot;,function(){
        var yeniekle = $(&quot;#yeniekle&quot;).val();
        if (yeniekle !=&#039;&#039;){
            $(&#039;#box-1&#039;).append(&#039;&lt;option value=&quot;&#039; + yeniekle + &#039;&quot; selected=&quot;selected&quot;&gt;&#039; + yeniekle + &#039;&lt;/option&gt;&#039;);
            $(&quot;#yeniekle&quot;).val(&#039;&#039;);
        } else {
            alert (&quot;Eklenecek Kelimeyi Girin&quot;);	
            return false;
        }
    });
})(jQuery);
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/29/jquery-ile-html-secme-kutusuna-bir-deger-ekleme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery ile form değerlerinin değişip değişmedigini kontrol etme</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/24/jquery-ile-form-degerlerinin-degisip-degismedigini-kontrol-etme/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/24/jquery-ile-form-degerlerinin-degisip-degismedigini-kontrol-etme/#comments</comments>
		<pubDate>Sat, 25 Jul 2015 00:56:02 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[serialize]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1190</guid>
		<description><![CDATA[JQuery ile formu submit etmeden önce form değerlerinin değişip değişmedigini kontrol etme]]></description>
				<content:encoded><![CDATA[<span class="su-label su-label-type-success">FORM</span> bilgilerini veritabanına göndermeden önce, <span class="su-label su-label-type-success">FORM</span> değerlerinin değişip değişmedigini kontrol etmek istersek, önceki <span class="su-label su-label-type-success">FORM</span> bilgileri ile yeni FORM bilgilerini aşağıdaki örnekte görüldüğü üzere <span class="su-label su-label-type-success">SERIALIZE</span> ile kıyaslamamız yeterlidir.  </p>
<pre class="prettyprint linenums" >
(function() {
    var formoncekiveri = $(&quot;#form&quot;).serialize(); 
    $(&quot;#kaydetbutton&quot;).click(function() {
        if ($(&quot;#form&quot;).serialize() != formoncekiveri ) {
            // form yeni verilere sahip
        }
    });
});
</pre>
<p>HTML sayfasında görmek istersek</p>
<pre class="prettyprint linenums" >
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;Bilgisayar.me&lt;/title&gt;
&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;form id=&quot;form&quot;&gt;
  &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
    &lt;tr&gt;
      &lt;td width=&quot;10%&quot;&gt;&nbsp;&lt;/td&gt;
      &lt;td width=&quot;90%&quot;&gt;&nbsp;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;İsim&lt;/td&gt;
      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;isim&quot; id=&quot;isim&quot; value=&quot;Hakan&quot; /&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Soyad&lt;/td&gt;
      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;soyad&quot; id=&quot;soyad&quot; value=&quot;Atilgan&quot;/&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/form&gt;
&lt;button name=&quot;kaydetbutton&quot; id=&quot;kaydetbutton&quot; type=&quot;submit&quot;&gt;Kaydet&lt;/button&gt;
&lt;script type=&#039;text/javascript&#039;&gt;
(function() {
    var formoncekiveri = $(&quot;#form&quot;).serialize(); // ilk FROM verilerini sakla
    $(document).on(&quot;click&quot;,&quot;#kaydetbutton&quot;, function(e) {
        e.preventDefault();
        if ($(&quot;#form&quot;).serialize() != formoncekiveri ) { // ilk ve son FROM verilerini kıyasla
            alert(&quot;Form Değişti&quot;);
        } else {
            alert(&quot;Form Değişmedi&quot;);	
        }
    });
})(jQuery);
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/24/jquery-ile-form-degerlerinin-degisip-degismedigini-kontrol-etme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery $.each kullanım örnekleri</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/23/jquery-foreach-ve-each-kullanim-ornekleri/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/23/jquery-foreach-ve-each-kullanim-ornekleri/#comments</comments>
		<pubDate>Thu, 23 Jul 2015 20:17:22 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[$.each]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1230</guid>
		<description><![CDATA[JQuery'nın foreach eşdeğerinde olan $.each döngüsünün kullanımı, Jquery uygulamalarınızda bir çok açıdan kullanışlı olacaktır. ]]></description>
				<content:encoded><![CDATA[<p>JQuery&#8217;nın <span class="su-label su-label-type-important">foreach</span> ya da <span class="su-label su-label-type-important">for</span> eşdeğerinde olan <span class="su-label su-label-type-important">$.each</span> döngüsünün kullanımı, Jquery uygulamalarınızda bir çok açıdan kullanışlı olacaktır. Aşağıda diziler, nesneler ve HTML elemanları ile ilgili <span class="su-label su-label-type-important">$.each </span> kullanarak nasıl döngü yapılabilir örneklerini bulacaksınız.</p>
<h3>JQuery $.each ile dizi döngüsü</h2>
<pre class="prettyprint linenums" >
$(function(){
    var dizi = [&quot;araba&quot;, &quot;uçak&quot;, &quot;gemi&quot;, &quot;bisiklet&quot;, &quot;tren&quot;];
    $.each(dizi, function(index, value){
        console.log(&quot;INDEKS: &quot; + index + &quot; DEGER: &quot; + value);
    });
});
</pre>
<p>Yukarıdaki scriptin çıkışı aşağıdaki gibi olacaktır:</p>
<pre class="prettyprint linenums" >
araba
uçak
gemi
bisiklet
tren
</pre>
<h3>JQuery $.each ile objelerin döngüsü</h2>
<p>Dizilerin yanısıra, bazen objeleride döngüye almak isteriz. Aşağıdaki kod JSON nesne döngüsü için bir örnektir.</p>
<pre class="prettyprint linenums" >
$(function(){
    var obje = [
        {
            no: 1,
            ad: &quot;Süleyman&quot;,
            soyad: &quot;Sol&quot;,
        },
        {
            no: 2,
            ad: &quot;Murat&quot;,
            soyad: &quot;Demir&quot;,
        },
        {
            no: 3,
            ad: &quot;Mustafa&quot;,
            soyad: &quot;Alkan&quot;,
        },
    ];
    $.each(obje, function(){
        console.log(&quot;NO: &quot; + this.no);
        console.log(&quot;İSİM: &quot; + this.Ad);
        console.log(&quot;SOY İSİM: &quot; + this.soyad);
        console.log(&quot; &quot;);
    });
});
</pre>
<p>Yukarıdaki scriptin çıkışı aşağıdaki gibi olacaktır:</p>
<pre class="prettyprint linenums" >
NO: 1
İSİM: Süleyman
SOY İSİM: Sol

NO: 2
İSİM: Murat
SOY İSİM: Demir

NO: 3
İSİM: Mustafa
SOY İSİM: Alkan
</pre>
<h3>JQuery $.each ile liste döngüsü</h2>
<p>Aşağıdaki kod &#8216;liste&#8217; sınıfına sahip bütün <span class="su-label su-label-type-important">&lt;ul></span> etiketi içindeki <span class="su-label su-label-type-important">&lt;li></span> elemanlarının yazı rengini <span class="su-label su-label-type-important">$.each</span> döngüsü ile green(yeşil)&#8217;e çevirir.</p>
<pre class="prettyprint linenums" >
$(function(){
    $(&#039;.liste li&#039;).each(function(){
        $(this).css(&quot;color&quot;, &quot;green&quot;);
    }
    });
});
</pre>
<h3>JQuery $.each ile diğer HTML elemanları döngüsü</h2>
<p>Liste elemanları yanı sıra her türlü HTML elemanlarınıda döngüde kullanabiliriz. Aşağıda örnekler bunlardan bazılarıdır.</p>
<pre class="prettyprint linenums" >
$(function(){
    $(&#039;a&#039;).each(function(){ // sayfadaki tüm bağlantıları döngüde kullan
        $(this).prop(&quot;href&quot;, &quot;#&quot;); // bağlantıyı devre dışı bırak
    });
    $(&#039;.hide&#039;).each(function(){ // .hide sınıfina sahip tüm unsurları döngüde kullan ve sakla
        $(this).hide(); 
    });
    $(&#039;pre&#039;).each(function(){ // bütün pre etiketlerini bul ve ekle sınıfını ekle
        $(this).addClass(&quot;ekle&quot;);
    });
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/23/jquery-foreach-ve-each-kullanim-ornekleri/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery ile açılan liste(select box) değiştiginde yeni sayfaya yönlerdirme</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-acilan-listeselect-box-degistiginde-yeni-sayfaya-yonlerdirme/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-acilan-listeselect-box-degistiginde-yeni-sayfaya-yonlerdirme/#comments</comments>
		<pubDate>Thu, 16 Jul 2015 21:06:58 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[açılan liste]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1157</guid>
		<description><![CDATA[Herhangi bir button kullanmadan sadece JQuery ile açılan liste(select box) değiştiginde yeni sayfaya yönlerdirin.]]></description>
				<content:encoded><![CDATA[<p>HTML</p>
<pre class="prettyprint linenums" >
&lt;div class=&quot;pull-right&quot;&gt;Elemanlar
  &lt;select name=&quot;kullanicikutusu&quot; id=&quot;kullanicikutusu&quot; style=&quot;width:300px&quot;&gt;
    &lt;option value=&quot;&quot;&gt;&lt;/option&gt;
    &lt;option value=&quot;199&quot; selected=&quot;selected&quot;&gt;Adam Ri&lt;/option&gt;
    &lt;option value=&quot;89&quot;&gt;Amanda Loweryneken&lt;/option&gt;
    &lt;option value=&quot;200&quot;&gt;Anna Bowenneken&lt;/option&gt;
    &lt;option value=&quot;145&quot;&gt;Bethany Olnekenson&lt;/option&gt;
    &lt;option value=&quot;158&quot;&gt;Brent Rednekenburn&lt;/option&gt;
    &lt;option value=&quot;177&quot;&gt;Chris Mornekengan&lt;/option&gt;
    &lt;option value=&quot;86&quot;&gt;Dustin Zimmer&lt;/option&gt;
    &lt;option value=&quot;187&quot;&gt;Greg Lauxman&lt;/option&gt;
    &lt;option value=&quot;1&quot;&gt;Hakan Atilgan&lt;/option&gt;
    &lt;option value=&quot;198&quot;&gt;Jessica Schlossmaner&lt;/option&gt;
    &lt;option value=&quot;164&quot;&gt;Juan Alemasn&lt;/option&gt;
    &lt;option value=&quot;153&quot;&gt;Lucas Muel&lt;/option&gt;
    &lt;option value=&quot;156&quot;&gt;Matt Millerler&lt;/option&gt;
    &lt;option value=&quot;191&quot;&gt;Shawn Smithler&lt;/option&gt;
    &lt;option value=&quot;193&quot;&gt;Shelly Littleler&lt;/option&gt;
  &lt;/select&gt;
&lt;/div&gt;
</pre>
<p>JQUERY</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
$(document).ready(function() { 
    $(document).on(&quot;change&quot;,&quot;#kullanicikutusu&quot;, function(){
        var sel = $(this).val(); //açılan liste seçilen değer
        window.location =&#039;index.php?id=&#039;+sel;  //kullanicikutusu ismindeki açılan liste değiştiginde index.php sayfasina yönlerdir
    });
});
&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/16/jquery-ile-acilan-listeselect-box-degistiginde-yeni-sayfaya-yonlerdirme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bir HTML tablosundan PHP kullanarak MYSQL veritabanından birden fazla satır nasıl silebilir veya güncelleyebilirim?</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/16/bir-html-tablosundan-php-kullanarak-mysql-veritabanindan-birden-fazla-satir-nasil-silebilir-veya-guncelleyebilirim/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/16/bir-html-tablosundan-php-kullanarak-mysql-veritabanindan-birden-fazla-satir-nasil-silebilir-veya-guncelleyebilirim/#comments</comments>
		<pubDate>Thu, 16 Jul 2015 19:46:45 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1131</guid>
		<description><![CDATA["Tümünü Seç" onay kutusunu tıklayarak birden fazla onay kutusunu kaldırmak/seçmek ve aynı zamanda MYSQL veritabanından verileri silmek için kullanılabileceğiniz basit uygulama. <a href="http://www.bilgisayar.me/dosyalar/tablosatirisil.zip" class="ozet yukle_color">YÜKLE</a> <a href="http://www.bilgisayar.me/demo/tablosatirsil/index.php" class="ozet demo_color">DEMO</a>]]></description>
				<content:encoded><![CDATA[<p>&#8220;Tümünü Seç&#8221; onay kutusunu tıklayarak birden fazla onay kutusunu kaldırmak/seçmek ve aynı zamanda MYSQL veritabanından verileri silmek için kullanılabileceğiniz basit uygulama.</p>
<p>&nbsp;</p>
<div style="width: 100%; text-align: center;"><a href="http://www.bilgisayar.me/demo/tablosatirsil/index.php" target="_blank" class="buttons btn_red left"><span class="left">Demo</span></a>
<a href="http://www.bilgisayar.me/dosyalar/tablosatirisil.zip" target="_self" class="buttons btn_blue left"><span class="left"><i class="fa fa-download"></i> YÜKLE</span></a></div>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>index.php</p>
<p>JQUERY</p>
<pre class="prettyprint linenums" >
&lt;script&gt;
(function($){
    // Bütün onay kutularını seç
    $(document).on(&quot;click&quot;,&quot;#hepsinisec&quot;,function(){
        $(&#039;input:checkbox&#039;).not(this).prop(&#039;checked&#039;, this.checked);
    });
    // Button tıklandı
    $(document).on(&quot;click&quot;,&quot;#kaldir&quot;,function(){
        $(this).html(&#039;&lt;i class=&quot;fa fa-trash&quot;&gt;&lt;/i&gt; Kaldırılıyor...&#039;);
        var onaykutu = $(&#039;input[name=&quot;onaykutusu[]&quot;]:checked&#039;);
        var enazbironay = onaykutu.length &gt; 0;
        if (enazbironay &lt;= 0) {
            alert(&quot;En az bir onay kutusu seçmelisiniz&quot;);
            return false;
        } else {
            $.ajax({ 
                type: &quot;POST&quot;, 
                url: &quot;ajax.php&quot;,
		data: &quot;onay=onay&amp;&quot; + onaykutu.serialize(), 
		success: function(html){
		    if (onaykutu){ 
			onaykutu.closest(&quot;tr&quot;).slideUp();
		    }
		    $(&quot;#kaldir&quot;).html(&#039;&lt;i class=&quot;fa fa-trash&quot;&gt;&lt;/i&gt; Kaldır&#039;);
		}
	    });
	}
    });	
})(jQuery);
&lt;/script&gt;
</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; class=&quot;table&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;1&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;23&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;423&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;33&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;22&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;44&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;onaykutusu[]&quot; id=&quot;onaykutusu[]&quot; value=&quot;12&quot; /&gt;&lt;/td&gt;
    &lt;td&gt;7&lt;/td&gt;
    &lt;td&gt;Kemal&lt;/td&gt;
    &lt;td&gt;Saglam&lt;/td&gt;
  &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;button class=&quot;btn btn-info&quot; id=&quot;kaldir&quot;&gt;&lt;i class=&quot;fa fa-trash&quot;&gt;&lt;/i&gt; Kaldır&lt;/button&gt;
</pre>
<p>ajax.php</p>
<pre class="prettyprint linenums" >
&lt;?PHP
if (isset($_POST) &amp;&amp; $_POST[&#039;onay&#039;] == &#039;onay&#039;){
    /*$arr = implode(&quot;,&quot;,$_POST[&#039;onaykutusu&#039;]);
    $sql = &quot;DELETE FROM tablo WHERE id IN (&quot;.$arr.&quot;)&quot;;
    $mysqli-&gt;query($sql);*/

    //veya
    /*foreach($_POST[&#039;onaykutusu&#039;] as $v){
        $sql = &quot;DELETE FROM tablo WHERE id = &quot;.$v;
        $mysqli-&gt;query($sql);
    }*/
}
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/16/bir-html-tablosundan-php-kullanarak-mysql-veritabanindan-birden-fazla-satir-nasil-silebilir-veya-guncelleyebilirim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
		<item>
		<title>JQuery ScrollUp eklentisi ile sayfa başına gitme</title>
		<link>http://www.bilgisayar.me/index.php/2015/07/16/jquery-scrollup-eklentisi-ile-sayfa-basina-gitme/</link>
		<comments>http://www.bilgisayar.me/index.php/2015/07/16/jquery-scrollup-eklentisi-ile-sayfa-basina-gitme/#comments</comments>
		<pubDate>Thu, 16 Jul 2015 18:08:11 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[scrollUp]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1133</guid>
		<description><![CDATA[ScrollUp web sayfasının başına gitmeyi sağlayan bir JQuery eklentisidir]]></description>
				<content:encoded><![CDATA[<p>ScrollUp web sayfasının başına gitmeyi (Scroll to top) sağlayan ve eklenti sahibine göre bütün web sayfalarında çalışabilen bir JQuery eklentisidir. CSS dosyasının kolay ayarlanması nedeniyle bütün projelerinize kolaylıkla uygulayabilrsiniz.</p>
<p>ScrollUp yüklemek için <a href="https://github.com/markgoodyear/scrollup" target="_blank">burayı <i class="fa fa-external-link"></i></a> tıklayın.</p>
<p>HTML</p>
<pre class="prettyprint linenums" >
&lt;div id=&quot;scrollUp&quot;&gt;&lt;/div
</pre>
<p>CSS</p>
<pre class="prettyprint linenums" >
#scrollUp {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #555;
    color: #fff;
}
</pre>
<p>Jquery</p>
<pre class="prettyprint linenums" >
//JQuery&#039; i eklemeyi unutmayın
$(function () {
    $.scrollUp({
        scrollName: &#039;scrollUp&#039;,      // eleman nosu
        scrollDistance: 300,         // Elemanı göstermeden önce üst / alt uzaklık (piksel)
        scrollFrom: &#039;top&#039;,           // &#039;top&#039; or &#039;bottom&#039;
        scrollSpeed: 300,            // Başa dönüş hızı(ms)
        easingType: &#039;linear&#039;,        // Scroll to top easing (see http://easings.net/)
        animation: &#039;fade&#039;,           // Fade, slide, none
        animationSpeed: 200,         // Anımasyon hızı (ms)
        scrollTrigger: false,        // Özel tetikleme elemanı ayarlayın. HTML dize veya jQuery nesnesi olabilir
        scrollTarget: false,         // Kaydırma için özel bir hedef elemanı ayarlayın. Eleman veya sayı olabilir
        scrollText: &#039;Scroll to top&#039;, // HTML Metin içerebilir 
        scrollTitle: false,          // Gerekirse başlığı &lt;a&gt; özel bir ayarlayın.
        scrollImg: false,            // Resim kullanmak için &#039;true&#039; olarak ayarlayın
        activeOverlay: false,        
        zIndex: 2147483647           // Z-Index değeri
    });
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bilgisayar.me/index.php/2015/07/16/jquery-scrollup-eklentisi-ile-sayfa-basina-gitme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
