<?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>Burak KAYA</title>
	<atom:link href="http://www.burakkaya.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burakkaya.com</link>
	<description>Bir başka WordPress sitesi</description>
	<lastBuildDate>Sat, 28 Apr 2012 11:51:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>jQuery :not kullanımı</title>
		<link>http://www.burakkaya.com/2012/02/18/jquery-not-kullanimi/</link>
		<comments>http://www.burakkaya.com/2012/02/18/jquery-not-kullanimi/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 07:29:37 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=236</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: plain; title: ; notranslate">
$(&quot;a[target=frameGenel]:not([href])&quot;).each(function(){
 $(this).hide();
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2012/02/18/jquery-not-kullanimi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JqueryUI Datepicker</title>
		<link>http://www.burakkaya.com/2011/12/19/jqueryui-datepicker/</link>
		<comments>http://www.burakkaya.com/2011/12/19/jqueryui-datepicker/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:44:32 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=222</guid>
		<description><![CDATA[Local Time ile birleştirilirse tadından yenmez&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.burakkaya.com/2011/12/19/local-time/" title="Local Time">Local Time</a> ile birleştirilirse tadından yenmez&#8230;</p>
<pre class="brush: jscript; title: ; notranslate">

    $(function() {
          $('#date1').datepicker();
          setMinDate();
          setInterval(setMinDate, 60000);
    });

    function setMinDate() {
          var minDate = (new Date().getHours() &lt; 16 ? 1 : 2);
          $('#date1').datepicker('option', {minDate: minDate, defaultDate: minDate});
    }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/12/19/jqueryui-datepicker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Time</title>
		<link>http://www.burakkaya.com/2011/12/19/local-time/</link>
		<comments>http://www.burakkaya.com/2011/12/19/local-time/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:31:09 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=217</guid>
		<description><![CDATA[stackoverflow]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
      var timezone = &quot;Europe/Istanbul&quot;;
      $.getJSON(&quot;http://json-time.appspot.com/time.json?tz=&quot;+timezone+&quot;&amp;callback=?&quot;,
        function(data){
           if (data.hour &lt; 12) {
              alert (&quot;Good morning in &quot;+timezone);
          } else {
            alert (&quot;Good afternoon in &quot;+timezone);
          }
        });
      });
</pre>
<p><a href="http://stackoverflow.com/questions/660927/how-can-i-obtain-the-local-time-in-jquery" title="stackoverflow" target="_blank">stack<b>overflow</b></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/12/19/local-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery vs. Postback</title>
		<link>http://www.burakkaya.com/2011/11/21/jquery-vs-postback/</link>
		<comments>http://www.burakkaya.com/2011/11/21/jquery-vs-postback/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 21:53:11 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=208</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequest);
function EndRequest(sender, args)
{
    if (args.get_error() == undefined) {
            BindEvents();
     }
}
function BindEvents()
{
   $(&quot;#btnClientSide&quot;).bind('click', function()
   {
         alert('I am clicked');
   });
}

BindEvents();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/11/21/jquery-vs-postback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery ile URL</title>
		<link>http://www.burakkaya.com/2011/10/22/jquery-ile-url/</link>
		<comments>http://www.burakkaya.com/2011/10/22/jquery-ile-url/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:26:32 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=201</guid>
		<description><![CDATA[Bir çok projede URL adresinden kontrol yapmam gerekti. Örnek bir kod bloğu&#8230;]]></description>
			<content:encoded><![CDATA[<p>Bir çok projede URL adresinden kontrol yapmam gerekti. Örnek bir kod bloğu&#8230;</p>
<pre class="brush: jscript; title: ; notranslate">
$(function(){
	var substrURL = window.location.pathname.split('/');
	var sc = substrURL[6].split('_');
	var isim = sc[1];
        ...
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/jquery-ile-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery ile sayfalama</title>
		<link>http://www.burakkaya.com/2011/10/22/jquery-ile-sayfalama/</link>
		<comments>http://www.burakkaya.com/2011/10/22/jquery-ile-sayfalama/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:24:15 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=199</guid>
		<description><![CDATA[SGK portalında kullandığım uzun bir tablonun jQuery ile sayfalara bölünmesini sağlayan kod.]]></description>
			<content:encoded><![CDATA[<p>SGK portalında kullandığım uzun bir tablonun jQuery ile sayfalara bölünmesini sağlayan kod.</p>
<pre class="brush: jscript; title: ; notranslate">
$(function(){

		$dataTable = $('.dataTable tbody tr');

		var rowCount		= $dataTable.length,
			visibleCount	= 10,
			pagerCount		= (rowCount - (rowCount % visibleCount)) / visibleCount,
			visiblePage		= 1,
			gt				= 0,
			lt				= 0;

		if((rowCount % visibleCount)&gt;0){pagerCount++;}

		if(pagerCount &gt; 1){
			for(i=1;i&lt;=pagerCount;i++){
				$('.pager').append('&lt;a href=&quot;#&quot; rel=&quot;'+i+'&quot;&gt;'+i+'&lt;/a&gt;&amp;nbsp;');
			}
		}

		$dataTable.slice(visibleCount, rowCount).hide();
		$('.pager a').live('click', function(){
			$dataTable.hide();
			visiblePage = $(this).attr('rel');
				gt = visibleCount * (visiblePage-1),
				lt = visibleCount * visiblePage;
					$dataTable.slice(gt,lt).show();
		});

	});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/jquery-ile-sayfalama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resim boyutlandırma</title>
		<link>http://www.burakkaya.com/2011/10/22/resim-boyutlandirma/</link>
		<comments>http://www.burakkaya.com/2011/10/22/resim-boyutlandirma/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:22:27 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=197</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">
resizeImage = function($img) {
	var wW	= $(window).width(),
		wH	= $(window).height(),
		wR	= wH / wW,
		iW	= $img.width(),
		iH	= $img.height(),
		iR	= iH / iW,
		nW	= 0,
		nH	= 0;

	if(wR &gt; iR){
		nH	= wH;
		nW	= wH / iR;
	}
	else{
		nH	= wW * iR;
		nW	= wW;
	}

	$img.css({
		width	: nW + 'px',
		height	: nH + 'px',
		left	: (wW - nW) / 2 + 'px',
		top		: (wH - nH) / 2 + 'px'
	});
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/resim-boyutlandirma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sağ tık engelleme</title>
		<link>http://www.burakkaya.com/2011/10/22/sag-tik-engelleme/</link>
		<comments>http://www.burakkaya.com/2011/10/22/sag-tik-engelleme/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:20:53 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=195</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">
$(function() {
    $(this).bind(&quot;contextmenu&quot;, function(e) {
        e.preventDefault();
    });
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/sag-tik-engelleme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Belli bir süre sonra kapanan popup</title>
		<link>http://www.burakkaya.com/2011/10/22/belli-bir-sure-sonra-kapanan-popup/</link>
		<comments>http://www.burakkaya.com/2011/10/22/belli-bir-sure-sonra-kapanan-popup/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:19:28 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=193</guid>
		<description><![CDATA[Colorbox&#8217; ı sayfada göründükten bir süre sonra kapanmasını sağlayan kod. Tabi css düzenlemesi ve html gerekiyor.]]></description>
			<content:encoded><![CDATA[<p>Colorbox&#8217; ı sayfada göründükten bir süre sonra kapanmasını sağlayan kod. Tabi css düzenlemesi ve html gerekiyor.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
   $(function () {
        if ($('.popupImageHolder &gt; *').length) {
            $('.countDownContainer').show();
            $.fn.colorbox({ href: &quot;.popupImageHolder&quot;, inline: true, open: true, onCleanup: function () { $('.countDownContainer').remove(); } });
            var t = $('.hiddenTime input').val(),
                kalanSure = 0,
                saniye = t / 1000;
            $('#sn').text(saniye);
            if (t != 0) {
                function updateTime() {
                    if (saniye &gt; 0) {
                        var geriSay = setInterval(
                function () {
                    saniye--;
                    if (saniye == 0) { clearInterval(geriSay); $('.countDownContainer').remove(); }
                    $('#sn').text(saniye);
                }, 1000);
                    }
                    else {
                        clearInterval(geriSay);
                    }
                }
                updateTime();

                setTimeout($.fn.colorbox.close, t);
            }
        }
    });

&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/belli-bir-sure-sonra-kapanan-popup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery &amp; UpdatePanel</title>
		<link>http://www.burakkaya.com/2011/10/22/jquery-updatepanel/</link>
		<comments>http://www.burakkaya.com/2011/10/22/jquery-updatepanel/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:14:32 +0000</pubDate>
		<dc:creator>parabola</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.burakkaya.com/?p=188</guid>
		<description><![CDATA[Update panel içinde kalan kontrollerde jQuery mmetotları tetiklenmiyor. Aşağıdaki kod ile çalıştırabilirsin.]]></description>
			<content:encoded><![CDATA[<p>Update panel içinde kalan kontrollerde jQuery mmetotları tetiklenmiyor. Aşağıdaki kod ile çalıştırabilirsin.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$(function () {

	var pgRegMgr = Sys.WebForms.PageRequestManager.getInstance();
	pgRegMgr.add_endRequest(EndHandler);

	function EndHandler() {
		$('.date').datepicker();
	}
});
&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.burakkaya.com/2011/10/22/jquery-updatepanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

