<?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>EvrenCe.Com &#187; jQuery</title>
	<atom:link href="http://www.evrence.com/konu/programlama/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.evrence.com</link>
	<description>Dünyaya bizim yanımızdan bakın ;)</description>
	<lastBuildDate>Wed, 21 Dec 2011 16:34:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery vs Mootools</title>
		<link>http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html</link>
		<comments>http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html#comments</comments>
		<pubDate>Tue, 21 Apr 2009 19:35:37 +0000</pubDate>
		<dc:creator>Evren Bayraktar</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery vs Mootols]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://www.evrence.com/?p=300</guid>
		<description><![CDATA[For the past few years javascript libraries have dominated the market. Very<h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html" rel="bookmark" title="jQuery ve LightBox"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery ve LightBox" />jQuery ve LightBox</a></strong>
Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html" rel="bookmark" title="jQuery,JSON ve pHp Mükemmel Grup :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery,JSON ve pHp Mükemmel Grup :)" />jQuery,JSON ve pHp Mükemmel Grup :)</a></strong>
Geçenlerde kkulife a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON.. jQuery
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/timthumb-ile-resim-buyultme.html" rel="bookmark" title="Timthumb ile resim büyütme"><img src="http://www.evrence.com/wp-content/uploads/2009/06/800px-PHP-n_logo.svg-150x78.png" width="70" height="50" alt="Timthumb ile resim büyütme" />Timthumb ile resim büyütme</a></strong>
Birçok wordpress temasında timthumb aktif olarak kullanılıyor. Bilmeyenler için kısaca açıklayayım timthumb&#8217;un
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/google-page-rank-checker.html" rel="bookmark" title="Google Page Rank Checker"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Google Page Rank Checker" />Google Page Rank Checker</a></strong>
Geçenlerde bay egonomik karşma bununla çıktı. Bu işte anlayın google page rank
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/eglence/ogrenci-adamin-hali.html" rel="bookmark" title="Öğrenci adamın hali :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Öğrenci adamın hali :)" />Öğrenci adamın hali :)</a></strong>
New semester: Yeni Dönem ( vın vın vınnnn &#8230; ) At the
</div>

	

]]></description>
			<content:encoded><![CDATA[<p><strong>For the past few years</strong> javascript libraries have dominated the market. Very rarely does a forward-facing website find itself running without the implementation of some sort of javascript library, whether that be jQuery or Mootools. These libraries make event interaction, manipulating the DOM, and ajax functions extremely easy.</p>
<h3>First things First</h3>
<p>Before you can make use of a library, you must first download the library (or see <a href="http://melissa-brandon.com/index.cfm/making-google-do-the-work">my other post</a> for some cool tips). The jQuery library is <a href="http://jquery.com/">available here</a>, <a href="http://mootools.net/">MooTools here</a>, and <a href="http://www.prototypejs.org/">Prototype here</a>.</p>
<h3>Round 1: Ready, Fight</h3>
<p>Generally you want to run the libraries as compressed as possible (or <a href="http://melissa-brandon.com/index.cfm/making-google-do-the-work">running off of Google’s servers</a>), and so that is what we are going to compare: compressed file sizes. Some people really don’t care much about this, but for those who do, this can be a breaking point.</p>
<ul>
<li><strong>jQuery-</strong> Compressed weighs in at 54kb</li>
<li><strong>Mootools-</strong> YUI Compressed comes to 63kb</li>
</ul>
<p>The libraries come in at just about the same weight when compressed</p>
<h3>Round 2: DOM Manipulation</h3>
<p>Here is the task- Select the 5th element in a list that has the id of “test-list”. Copy that list item and then append it to the end of the list. We are going to assume that the library has already been initialized ($(function(){});, ect).</p>
<h4>Code Samples</h4>
<pre class="javascript"><span style="color: #009900; font-style: italic;">// jQuery Demonstration</span>
<span style="color: #003366; font-weight: bold;">var</span> fifth_item = $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#test-list li:nth-child(5)&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">html</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#test-list&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span>fifth_item<span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #009900; font-style: italic;">// Shorter, but less readable</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#test-list&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span>$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#test-list li:nth-child(5)&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">html</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #009900; font-style: italic;">// MooTools Demonstration</span>
<span style="color: #003366; font-weight: bold;">var</span> fifth_item = $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#test-list li:nth-child(5)&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #003366; font-weight: bold;">var</span> test_list = $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;test-list&quot;</span><span style="color: #66cc66;">&#41;</span>;test_list.<span style="color: #006600;">inject</span><span style="color: #66cc66;">&#40;</span>fifth_item<span style="color: #66cc66;">&#41;</span>;</pre>
<p>All three libraries make the DOM Manipulation simple. With these three it really comes down to comfort. Personally I am more comfortable with the jQuery way of simple DOM manipulation.<span id="more-300"></span></p>
<h3>Round 3: Strings and Arrays</h3>
<p>The mission is to loop over an array, filter out any requested items, and then append the array to another array.</p>
<pre class="javascript"><span style="color: #003366; font-weight: bold;">var</span> myArray = <span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">&quot;brandon&quot;</span>,<span style="color: #3366CC;">&quot;james&quot;</span>,<span style="color: #3366CC;">&quot;hansen&quot;</span>,<span style="color: #3366CC;">&quot;says&quot;</span>,<span style="color: #3366CC;">&quot;hello&quot;</span><span style="color: #66cc66;">&#93;</span>;
<span style="color: #009900; font-style: italic;">// jQuery Demonstration</span>
$.<span style="color: #006600;">grep</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span>,index<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span> != <span style="color: #3366CC;">&quot;brandon&quot;</span> &amp;amp;amp;;&amp;amp;amp;item != <span style="color: #3366CC;">&quot;hello&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
myArray.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">&quot;melissa&quot;</span>,<span style="color: #3366CC;">&quot;also&quot;</span>,<span style="color: #3366CC;">&quot;says&quot;</span>,<span style="color: #3366CC;">&quot;hello&quot;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #009900; font-style: italic;">// MooTools Demonstration</span>
myArray.<span style="color: #006600;">filter</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span>,index<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span> != <span style="color: #3366CC;">&quot;brandon&quot;</span> &amp;amp;amp;;&amp;amp;amp;item != <span style="color: #3366CC;">&quot;hello&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
myArray.<span style="color: #006600;">extend</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#91;</span><span style="color: #3366CC;">&quot;melissa&quot;</span>,<span style="color: #3366CC;">&quot;also&quot;</span>,<span style="color: #3366CC;">&quot;says&quot;</span>,<span style="color: #3366CC;">&quot;hello&quot;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<h3>Round 4: Ajax</h3>
<p>The mission is to, on demand, load a remote page and pass it a variable. The script must then return the result (or error) to the browser.</p>
<pre class="javascript"><span style="color: #009900; font-style: italic;">// jQuery Demonstration</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#click-me&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">click</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
$.<span style="color: #006600;">post</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;test.php&quot;</span>, <span style="color: #66cc66;">&#123;</span> lang: <span style="color: #3366CC;">&quot;jQuery&quot;</span>, competition: <span style="color: #3366CC;">&quot;MooTools&quot;</span> <span style="color: #66cc66;">&#125;</span>,  <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>data<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#result&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span>data<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span> <span style="color: #66cc66;">&#41;</span>;
<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #009900; font-style: italic;">// MooTools Demonstration</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'ajax-replace'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">addEvent</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'click'</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>event<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
<span style="color: #009900; font-style: italic;">//prevent the page from changing</span>
event.<span style="color: #000066;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #009900; font-style: italic;">//make the ajax call, replace text</span>
<span style="color: #003366; font-weight: bold;">var</span> req = <span style="color: #003366; font-weight: bold;">new</span> Request.<span style="color: #006600;">HTML</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span>
method: <span style="color: #3366CC;">'get'</span>,
url: $<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'ajax-replace'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">get</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'href'</span><span style="color: #66cc66;">&#41;</span>,
data: <span style="color: #66cc66;">&#123;</span> <span style="color: #3366CC;">&quot;lang&quot;</span>: <span style="color: #3366CC;">&quot;MooTools&quot;</span>, <span style="color: #3366CC;">&quot;competition&quot;</span>: <span style="color: #3366CC;">&quot;jQuery&quot;</span> <span style="color: #66cc66;">&#125;</span>,
onComplete: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>response<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'result'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">inject</span><span style="color: #66cc66;">&#40;</span>response<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">send</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<h3>Round 5: Visual Effects</h3>
<p>I am not even going to run much of a test here. jQuery wasn’t really designed for visual effects, although there are a host of plugins available which aid in the process. MooTools, on the other hand, ships with a large number of FX, such as tween, morph, and others. Both libraries make basics like fading in and out, showing and hiding, and sliding rather easy.</p>
<h3>Round 6: Extending the Core</h3>
<p>It is not in the scope of this article to teach you how to extend the libraries with custom plugins. However, I do want to show how each library implements plugins. jQuery uses the fn.extend() method to extend the core library. This allows plugins to essentially become part of the core architecture. MooTools takes a slightly different approach and really extends the library much the same way that PHP and other languages use classes to extend base classes.</p>
<p>Let’s do a quick example with a cool plugin (totally made up) called “dominate”.</p>
<pre class="javascript"><span style="color: #009900; font-style: italic;">// jQuery Demonstration</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;#world&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">click</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">dominate</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span>
destroy : <span style="color: #3366CC;">&quot;body&quot;</span>,
create : <span style="color: #3366CC;">&quot;p&quot;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>
&nbsp;
<span style="color: #009900; font-style: italic;">// MooTools Demonstration</span>
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;world&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">addEvent</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'click'</span>,<span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>event<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> dominate = <span style="color: #003366; font-weight: bold;">new</span> Dominate<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span>
destroy : <span style="color: #3366CC;">&quot;body&quot;</span>,
create : <span style="color: #3366CC;">&quot;p&quot;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;</pre>
<p>As you can see implementation of extensions is pretty simple. The jQuery implementation, I would have to say, is a little bit smoother and more transparent. But many developers are probably a lot more comfortable with the MooTools implementation.</p>
<h3>It’s A Draw</h3>
<p>Both languages have their strengths and weaknesses. jQuery attempts to be a lot more transparent in its power. MooTools has a lot more visual flare. Both libraries have extremely large, passionate followings. It is hard to argue against either library. They are both very exceptional and handle small and large tasks effortlessly.</p>
<p>Alıntı: <a href="http://melissa-brandon.com/2009/02/jquery-vs-mootools/" target="_blank">http://melissa-brandon.com/2009/02/jquery-vs-mootools/</a></p>
<img src="http://www.evrence.com/?ak_action=api_record_view&id=300&type=feed" alt="" /><h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html" rel="bookmark" title="jQuery ve LightBox"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery ve LightBox" />jQuery ve LightBox</a></strong><p>Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html" rel="bookmark" title="jQuery,JSON ve pHp Mükemmel Grup :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery,JSON ve pHp Mükemmel Grup :)" />jQuery,JSON ve pHp Mükemmel Grup :)</a></strong><p>Geçenlerde kkulife a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON.. jQuery</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/timthumb-ile-resim-buyultme.html" rel="bookmark" title="Timthumb ile resim büyütme"><img src="http://www.evrence.com/wp-content/uploads/2009/06/800px-PHP-n_logo.svg-150x78.png" width="70" height="50" alt="Timthumb ile resim büyütme" />Timthumb ile resim büyütme</a></strong><p>Birçok wordpress temasında timthumb aktif olarak kullanılıyor. Bilmeyenler için kısaca açıklayayım timthumb&#8217;un</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/google-page-rank-checker.html" rel="bookmark" title="Google Page Rank Checker"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Google Page Rank Checker" />Google Page Rank Checker</a></strong><p>Geçenlerde bay egonomik karşma bununla çıktı. Bu işte anlayın google page rank</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/eglence/ogrenci-adamin-hali.html" rel="bookmark" title="Öğrenci adamın hali :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Öğrenci adamın hali :)" />Öğrenci adamın hali :)</a></strong><p>New semester: Yeni Dönem ( vın vın vınnnn &#8230; ) At the</p>
</div>

	

]]></content:encoded>
			<wfw:commentRss>http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery ve LightBox</title>
		<link>http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html</link>
		<comments>http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html#comments</comments>
		<pubDate>Sun, 08 Feb 2009 01:15:19 +0000</pubDate>
		<dc:creator>Evren Bayraktar</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery örnek]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[lightbox örnek]]></category>

		<guid isPermaLink="false">http://www.evrence.com/?p=148</guid>
		<description><![CDATA[Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına<h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html" rel="bookmark" title="jQuery vs Mootools"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery vs Mootools" />jQuery vs Mootools</a></strong>
For the past few years javascript libraries have dominated the market. Very
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html" rel="bookmark" title="jQuery,JSON ve pHp Mükemmel Grup :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery,JSON ve pHp Mükemmel Grup :)" />jQuery,JSON ve pHp Mükemmel Grup :)</a></strong>
Geçenlerde kkulife a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON.. jQuery
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/php-ile-resim-uzerine-yazi-yazma-scripti.html" rel="bookmark" title="PHP İle Resim Üzerine Yazı Yazma Scripti"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="PHP İle Resim Üzerine Yazı Yazma Scripti" />PHP İle Resim Üzerine Yazı Yazma Scripti</a></strong>
Sahile, köprüye istediğimiz yazıyı yazdırdığımız birçok site mevcuttu bunları hepimiz biliyoruzdur. Fakat
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/php-ile-rastgele-soz.html" rel="bookmark" title="PHP ile Rastgele Söz"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="PHP ile Rastgele Söz" />PHP ile Rastgele Söz</a></strong>
Bazen projelerimizde rastgele sözler işimize yarayabilir. Tabiki bunu sadece söz ile kısıtlamamakta
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/genel/3g-oldu.html" rel="bookmark" title="3G Öldü.."><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="3G Öldü.." />3G Öldü..</a></strong>
Bildiğiniz üzere yakın zamanda patlama yaratan projem 3GNedir.net idi. 30 Temmuzdan sonra
</div>

	

]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="jQuery" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" alt="" width="215" height="53" /> Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına bakarasnız genel light box örneğini sadeleştirdim. Buradan da biraz örneği anlatmak, açıklamak istiyorum.</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;main.css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;screen&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;lightbox.css&quot;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&quot;screen&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">&lt;script</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;jquery-1.3.1.min.js&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">&lt;script</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;lightbox.pack.js&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
&nbsp;</pre>
<p>Buradan gerekli dosyaları sitemize ekledik. main.css de ana sayfa düzeni bulunmakta. Sadece görünüm ile alakalı bişey olması yada olmaması lightbox un çalışmasına etkimeyecek.<span id="more-148"></span></p>
<pre class="javascript">&nbsp;
    &lt;script type=<span style="color: #3366CC;">&quot;text/javascript&quot;</span>&gt;
	$<span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
		$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'#gallery a'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">lightBox</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span>fixedNavigation:<span style="color: #003366; font-weight: bold;">true</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
    &lt;/script&gt;
&nbsp;</pre>
<p>Lightbox eklentimizi ekliyeceğimiz nesneyi seçtik. Ve olay bitti. Görüldüğü gibi jquery ve plugin olayları aslına bakılırsa o kadarda zor değil. </p>
<p>Çalışan örneğe <a href="http://www.evrenweb.net/ornek/jquery/lightbox/">buradan</a> ulaşabilir ve örneği <a href="http://www.evrenweb.net/ornek/jquery/lightbox/lightbox.rar">şuradan</a> indirebilirsiniz.</p>
<img src="http://www.evrence.com/?ak_action=api_record_view&id=148&type=feed" alt="" /><h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html" rel="bookmark" title="jQuery vs Mootools"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery vs Mootools" />jQuery vs Mootools</a></strong><p>For the past few years javascript libraries have dominated the market. Very</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html" rel="bookmark" title="jQuery,JSON ve pHp Mükemmel Grup :)"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery,JSON ve pHp Mükemmel Grup :)" />jQuery,JSON ve pHp Mükemmel Grup :)</a></strong><p>Geçenlerde kkulife a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON.. jQuery</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/php-ile-resim-uzerine-yazi-yazma-scripti.html" rel="bookmark" title="PHP İle Resim Üzerine Yazı Yazma Scripti"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="PHP İle Resim Üzerine Yazı Yazma Scripti" />PHP İle Resim Üzerine Yazı Yazma Scripti</a></strong><p>Sahile, köprüye istediğimiz yazıyı yazdırdığımız birçok site mevcuttu bunları hepimiz biliyoruzdur. Fakat</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/php/php-ile-rastgele-soz.html" rel="bookmark" title="PHP ile Rastgele Söz"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="PHP ile Rastgele Söz" />PHP ile Rastgele Söz</a></strong><p>Bazen projelerimizde rastgele sözler işimize yarayabilir. Tabiki bunu sadece söz ile kısıtlamamakta</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/genel/3g-oldu.html" rel="bookmark" title="3G Öldü.."><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="3G Öldü.." />3G Öldü..</a></strong><p>Bildiğiniz üzere yakın zamanda patlama yaratan projem 3GNedir.net idi. 30 Temmuzdan sonra</p>
</div>

	

]]></content:encoded>
			<wfw:commentRss>http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery,JSON ve pHp Mükemmel Grup :)</title>
		<link>http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html</link>
		<comments>http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html#comments</comments>
		<pubDate>Tue, 27 Jan 2009 02:46:06 +0000</pubDate>
		<dc:creator>Evren Bayraktar</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[aJax]]></category>
		<category><![CDATA[Jquery Galeri]]></category>
		<category><![CDATA[Jquery Resim Galerisi]]></category>
		<category><![CDATA[jquery ve json]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programlama]]></category>

		<guid isPermaLink="false">http://www.evrence.com/?p=66</guid>
		<description><![CDATA[Geçenlerde kkulife a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON.. jQuery<h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html" rel="bookmark" title="jQuery vs Mootools"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery vs Mootools" />jQuery vs Mootools</a></strong>
For the past few years javascript libraries have dominated the market. Very
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html" rel="bookmark" title="jQuery ve LightBox"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery ve LightBox" />jQuery ve LightBox</a></strong>
Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/genel/kisisel-notlar/daha-samimi.html" rel="bookmark" title="Daha samimi.."><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Daha samimi.." />Daha samimi..</a></strong>
Uzun zamandır yine bişeyeler yazamıyorum. Ne yaptığımında farkında değilim açıkcası. Vakit harcanıp
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/google-page-rank-checker.html" rel="bookmark" title="Google Page Rank Checker"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Google Page Rank Checker" />Google Page Rank Checker</a></strong>
Geçenlerde bay egonomik karşma bununla çıktı. Bu işte anlayın google page rank
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/eglence/zara-tasarimicilarinin-mukemmel-eseri.html" rel="bookmark" title="ZARA Tasarımıcılarının Mükemmel Eseri !"><img src="http://www.evrence.com/wp-content/uploads/2010/02/DSCN4074-150x112.jpg" width="70" height="50" alt="ZARA Tasarımıcılarının Mükemmel Eseri !" />ZARA Tasarımıcılarının Mükemmel Eseri !</a></strong>
Geçenlerde AnkaMall de dolanırken Zara Man &#8216;a gireyim dedim. Niyetim, var ise
</div>

	

]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="jQuery" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" alt="" width="215" height="53" /> Geçenlerde <a href="http://www.kkulife.net">kkulife</a> a galeri yapmaya çalışırken yeni bir olayla karşılaştım. JSON..</p>
<p>jQuery nin türkiye mail grubu ile mesajlaşırken Hüseyin Berberoğlu saolsun aklımda bişeyler oluşturması amacı ile google da bu 3 lü yü arayabilirsin demişti. Bende hemen araştırmaya başladım ve karşıma güzel sonuçlar çıktı. Tabiki en güzeli erhan (<a href="http://www.eburhan.com">Eburhan</a>) dan geldi <img src='http://www.evrence.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>JSON xml tarzında bir yapıya sahip. Jquery ile de güzelce kullanabiliyoruz. Büyük şirketler de apilerinde JSON a yer vermiş. Mesela yine <a href="http://www.kkulife.net">kkulife</a> a yapacağım video olayını bu yazıyı yazarken youtube apisine göz gezdirmemle çözmüş bulunmaktayım <img src='http://www.evrence.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  [ Teşekkürler <a href="http://www.tsdesign.info">Türker</a> ]</p>
<p>Gelelim mevzumuza.. Erhanın sitesinde yazmıs olduğu güzel makaleyi burada da yayınlamak istiyorum.</p>
<p><span id="more-66"></span></p>
<div id="post-content">
<p><img class="sol" src="http://www.eburhan.com/wp-content/ekler/ortak/jquery.png" alt="compress" width="80" height="75" align="left" /><abbr title="Asynchronous JavaScript and XML">AJAX</abbr> teriminin sonundaki X harfi <abbr title="eXtensible Markup Language">XML</abbr> dilini temsil ediyor. XML ise farklı platformlar arasında veri alış-verişi yapılabilmesi için oluşturulmuş bir dil. Fakat AJAX işlemlerinde XML kullanmaya bir türlü ısınamamışımdır. Çünkü XML'in javaScript ile parse edilmesi uğraştırıcı olabiliyor. İşte tam bu noktada <abbr title="JavaScript Object Notation">JSON</abbr> imdadımıza yetişiyor. JSON olarak gelen verileri, herhangi bir parselleme işlemi yapmadan javaScript içerisinde kullanabiliyorsunuz. Bir de buna jQuery'nin getirdiği kolaylıkları eklersek değmeyin gitsin keyfimize <img class="wp-smiley" src="http://www.eburhan.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<h3>JSON nedir?</h3>
<p>XML dilinin çok farklı kullanım alanları olmasına karşın JSON ise yalnızca veri alış-verişi amacıyla oluşturulmuş bir veri biçimlendirme yöntemidir. Açılmış haliyle <strong>J</strong>ava<strong>S</strong>cript <strong>O</strong>bject <strong>N</strong>otation demektir. javaScript dilinin bir parçası olduğu için XML'den çok daha kolay ve hızlı bir şekilde işlenebilir. Ayrıca XML ile biçimlendirilmiş bir veri kümesini JSON ile biçimlendirdiğinizde daha az yer kapladığını görürsünüz.</p>
<p>Şimdi alttaki örneklere gözatalım. Elimizde 3 adet bilgisayar programının bilgileri var. Bu bilgiler XML ile ifade edildiğinde şöyle görünüyor olsun:</p>
<div class="syntax_hilite">
<div id="xml-1">
<div class="xml">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;programlar<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;isim<span style="font-weight: bold; color: black;">&gt;</span></span></span>Zone Alarm<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/isim<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span>bilgisayarın güvenliğini sağlar<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;adres<span style="font-weight: bold; color: black;">&gt;</span></span></span>www.zonealarm.com<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/adres<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;isim<span style="font-weight: bold; color: black;">&gt;</span></span></span>Opera<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/isim<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span>güvenli ve hızlı bir web tarayıcısıdır<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;adres<span style="font-weight: bold; color: black;">&gt;</span></span></span>www.opera.com<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/adres<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;isim<span style="font-weight: bold; color: black;">&gt;</span></span></span>Photoshop<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/isim<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span>güçlü bir imaj işleme yazılımıdır<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/bilgi<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;adres<span style="font-weight: bold; color: black;">&gt;</span></span></span>www.adobe.com<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/adres<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/program<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/programlar<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
</ol>
</div>
</div>
</div>
<p>Şimdi de aynı bilgilerin JSON kullanılarak ifade edilmiş haline bakalım:</p>
<div class="syntax_hilite">
<div id="javascript-2">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"programlar"</span>:<span style="color: #66cc66;">[</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"isim"</span>:<span style="color: #3366cc;">"Zone Alarm"</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"bilgi"</span>:<span style="color: #3366cc;">"bilgisayarın güvenliğini sağlar"</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"adres"</span>:<span style="color: #3366cc;">"www.zonealarm.com"</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"isim"</span>:<span style="color: #3366cc;">"Opera"</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"bilgi"</span>:<span style="color: #3366cc;">"güvenli ve hızlı bir web tarayıcısıdır"</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"adres"</span>:<span style="color: #3366cc;">"www.opera.com"</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"isim"</span>:<span style="color: #3366cc;">"Photoshop"</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"bilgi"</span>:<span style="color: #3366cc;">"güçlü bir imaj işleme yazılımıdır"</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #3366cc;">"adres"</span>:<span style="color: #3366cc;">"www.adobe.com"</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">]</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span></div>
</li>
</ol>
</div>
</div>
</div>
<p>Örneklere dikkatlice bakarsak JSON örneğinin daha okunabilir olduğunu söyleyebiliriz. Çünkü XML içinde bir sürü etiket açıp kapattığımız için veri kümemiz daha kalabalık ve karmaşık bir görüntü vermektedir. Ayrıca XML örneği yaklaşık 527 bayt büyüklüğünde iken JSON örneği 465 bayt büyüklüğündedir. Yani JSON örneği yaklaşık %12 daha az yer kaplamaktadır. %12'lik fark hemen size önemsiz gelmesin. Zira burada yalnızca 3 tane bilgisayar programın bilgilerini kullandık. Bu sayı 3 değil de 1000-5000 gibi büyük rakamlar olunca aradaki fark daha da büyüyecektir. Sonuçta büyük miktardaki verileri XML ile taşımaktan ziyade JSON ile taşıyarak hız kazancı elde etmeniz mümkündür.</p>
<h3>jQuery ile JSON verilerini işlemek</h3>
<p>jQuery kütüphanesi ile JSON tipindeki verileri iki yöntemle işleyebiliriz. Bunlardan ilki AJAX istekleri oluşturuyorken kullandığımız <code class="tek">$.ajax()</code> fonksiyonudur. Bu fonksiyonda <strong>dataType </strong>seçeneğini kullanıp değer olarak <strong>json </strong>ataması yaparsanız artık jQuery ile JSON verisi işleyebilirsiniz. Bir de JSON verilerini işlemek için özel olarak hazırlanmış <code class="tek">$.getJSON()</code> fonksiyonu vardır. Biz burada her iki yöntemi de ele alacağız.</p>
<p>Örneğimizde "program-bilgileri.php" isimli bir dosyamız mevcut. Bu dosyanın görevi, 3 adet bilgisayar programının bilgilerini JSON formatında vermek. Yani yukarıdaki JSON örneğinin aynısını kullanıyoruz <img class="wp-smiley" src="http://www.eburhan.com/wp-includes/images/smilies/icon_wink.gif" alt=";)" /> Sonra, bu dosyaya jQuery ile erişerek JSON tipinde gelen program bilgilerini işleyeceğiz.</p>
<div class="syntax_hilite">
<div id="javascript-3">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$.<span style="color: #006600;">ajax</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">url: <span style="color: #3366cc;">'program-bilgileri.php'</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">dataType: <span style="color: #3366cc;">'json'</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">success: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">(</span>JSON<span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$<span style="color: #66cc66;">(</span><span style="color: #3366cc;">'#sonuc'</span><span style="color: #66cc66;">)</span>.<span style="color: #006600;">empty</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-weight: bold; color: #26536a;"></li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$.<span style="color: #006600;">each</span><span style="color: #66cc66;">(</span>JSON.<span style="color: #006600;">programlar</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">(</span>i, program<span style="color: #66cc66;">)</span><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$<span style="color: #66cc66;">(</span><span style="color: #3366cc;">'#sonuc'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>JSON.<span style="color: #006600;">program</span>.<span style="color: #006600;">isim</span> +<span style="color: #3366cc;">'&lt;br /&gt;'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>JSON.<span style="color: #006600;">program</span>.<span style="color: #006600;">bilgi</span>+<span style="color: #3366cc;">'&lt;br /&gt;'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>JSON.<span style="color: #006600;">program</span>.<span style="color: #006600;">adres</span>+<span style="color: #3366cc;">'&lt;hr /&gt;'</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span><span style="color: #66cc66;">)</span>;</div>
</li>
</ol>
</div>
</div>
</div>
<p>Bu örnekteki <code class="tek">$.ajax()</code> fonksiyonunu <a href="http://www.eburhan.com/jquery-ve-ajax-islemleri/">jQuery ve AJAX işlemleri</a> yazısında ele almıştık. Buradaki ilk önemli nokta "dataType" seçeneği ile "program-bilgileri.php" dosyasından gelecek verinin JSON formatında olacağını bildirmektir. Sonraki önemli nokta ise alınan JSON formatındaki verilerin <code class="tek">$.each()</code> fonksiyonu kullanılarak tek tek işlenmesidir <em>(bu fonksiyona birazdan bakacağız)</em>. Örneğin çalışır halini <a href="http://www.eburhan.com/wp-content/ekler/96/ornek-1.php">Örnek 1</a> sayfasında bulabilirsiniz.</p>
<p>Şimdi de aynı işlemin <code class="tek">$.getJSON()</code> fonksiyonu ile nasıl yapıldığınına bakalım:</p>
<div class="syntax_hilite">
<div id="javascript-4">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$.<span style="color: #006600;">getJSON</span><span style="color: #66cc66;">(</span><span style="color: #3366cc;">'program-bilgileri.php'</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">(</span>JSON<span style="color: #66cc66;">)</span><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$<span style="color: #66cc66;">(</span><span style="color: #3366cc;">'#sonuc'</span><span style="color: #66cc66;">)</span>.<span style="color: #006600;">empty</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;"></li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$.<span style="color: #006600;">each</span><span style="color: #66cc66;">(</span>JSON.<span style="color: #006600;">programlar</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">(</span>i, program<span style="color: #66cc66;">)</span><span style="color: #66cc66;">{</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$<span style="color: #66cc66;">(</span><span style="color: #3366cc;">'#sonuc'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>program.<span style="color: #006600;">isim</span> +<span style="color: #3366cc;">'&lt;br /&gt;'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>program.<span style="color: #006600;">bilgi</span>+<span style="color: #3366cc;">'&lt;br /&gt;'</span><span style="color: #66cc66;">)</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>program.<span style="color: #006600;">adres</span>+<span style="color: #3366cc;">'&lt;hr /&gt;'</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span><span style="color: #66cc66;">)</span>;</div>
</li>
</ol>
</div>
</div>
</div>
<p>Eğer sık sık JSON tipindeki verilerle çalışacaksanız bu fonksiyon daha pratik gelecektir. Çünkü <code class="tek">$.ajax()</code> fonksiyonunda olduğu gibi her seferinde "dataType" ve "success" gibi seçenekleri belirtmek zorunda kalmazsınız. Örneği test etmek için <a href="http://www.eburhan.com/wp-content/ekler/96/ornek-2.php">Örnek 2</a> sayfasına bakabilirsiniz.</p>
<h3>$.each() fonksiyonu ne işe yarar?</h3>
<p><code class="tek">$.each()</code> fonksiyonundan önceki yazılarda bahsetmediğim için şimdi bahsetmenin tam zamanı. Bu fonksiyonun görevi, javaScript'teki <strong>object</strong> veya <strong>array</strong> tipindeki verileri bir döngü içerisinde işlemektir. <code class="tek">$.each()</code> fonksiyonu sayesinde ayrıca bir <strong>for</strong> döngüsü açmanıza gerek kalmaz. Şimdi elimizde şöyle bir object (nesne) olduğunu varsayalım.</p>
<div class="syntax_hilite">
<div id="javascript-5">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">var</span> nesne=<span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">isim: <span style="color: #3366cc;">"Erhan"</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">soyisim: <span style="color: #3366cc;">"BURHAN"</span>,</div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">yas: <span style="color: #800000;">24</span>,</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">web: <span style="color: #3366cc;">"eburhan.com"</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span>;</div>
</li>
</ol>
</div>
</div>
</div>
<p>Bu nesnedeki özellikleri ve değerleri kullanabilmek için <code class="tek">$.each()</code> fonksiyonunu şöyle kullanıyoruz:</p>
<div class="syntax_hilite">
<div id="javascript-6">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$.<span style="color: #006600;">each</span><span style="color: #66cc66;">(</span>nesne, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">(</span>ozellik, deger<span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span></div>
</li>
<li style="font-weight: bold; color: #26536a;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;">$<span style="color: #66cc66;">(</span><span style="color: #3366cc;">'#sonuc'</span><span style="color: #66cc66;">)</span>.<span style="color: #006600;">append</span><span style="color: #66cc66;">(</span>ozellik+<span style="color: #3366cc;">': '</span>+deger+<span style="color: #3366cc;">'&lt;br /&gt;'</span><span style="color: #66cc66;">)</span>;</div>
</li>
<li style="font-family: 'Courier New',Courier,monospace; font-weight: normal; font-style: normal; color: #3a6a8b;">
<div style="font-family: 'Courier New',Courier,monospace; font-weight: normal;"><span style="color: #66cc66;">}</span><span style="color: #66cc66;">)</span>;</div>
</li>
</ol>
</div>
</div>
</div>
<p>Sonuç olarak bu işlemin çıktısı alttaki gibi olacaktır. Sonucu test etmek için <a href="http://www.eburhan.com/wp-content/ekler/96/ornek-3.php">Örnek 3</a> sayfasına bakabilirsiniz. <code class="tek">$.each()</code> fonksiyonu ile ilgili daha ayrıntılı bilgiye ise <a href="http://docs.jquery.com/Utilities/jQuery.each">şuradan</a> ulaşabilirsiniz.</p>
<p><img class="kenar" src="http://www.eburhan.com/wp-content/ekler/96/each.png" alt="each" width="147" height="87" /></p>
<h3>Sonuç...</h3>
<p>JSON formatı artık kendisine geniş bir kullanım alanı bulmuştur. Bugün pekçok web servisini incelediğimizde <a title="Application Programming Interface" href="http://www.eburhan.com/etiket/api/">API</a> kaynaklarını JSON formatında da sunduklarını görüyoruz. <a href="http://developer.yahoo.com/search/siteexplorer/V1/pageData.html">Yahoo</a>, <a href="http://del.icio.us/help/json/">Delicious</a>, <a href="http://www.flickr.com/services/api/">Flickr</a>, <a href="http://code.google.com/apis/youtube/migration.html">YouTube</a>, <a href="http://www.getclicky.com/help/api">Getclicky</a>... gibi büyük servisler buna sadece birkaç örnek. İşte bundan dolayı JSON formatı ile işlem yapmaya alışık olmalıyız.</p>
<p>Bu yazıdaki örnekleri <a href="http://www.eburhan.com/wp-content/ekler/96/jquery_json_islemleri.zip">buradan</a> indirebileceğinizi hatırlatıp, JSON formatı hakkında daha fazla bilgi alabileceğiniz kaynaklardan bazılarına link vererek yazıyı noktalıyorum <img class="wp-smiley" src="http://www.eburhan.com/wp-includes/images/smilies/icon_wink.gif" alt=";)" /></div>
<img src="http://www.evrence.com/?ak_action=api_record_view&id=66&type=feed" alt="" /><h3>Benzer Yazılar:</h3>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-vs-mootools.html" rel="bookmark" title="jQuery vs Mootools"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery vs Mootools" />jQuery vs Mootools</a></strong><p>For the past few years javascript libraries have dominated the market. Very</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/jquery/jquery-ve-lightbox.html" rel="bookmark" title="jQuery ve LightBox"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="jQuery ve LightBox" />jQuery ve LightBox</a></strong><p>Turk-php de bir arkadaşımızın isteği üzerine lightbox hakkında bir örnek yaptım. Aslına</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/genel/kisisel-notlar/daha-samimi.html" rel="bookmark" title="Daha samimi.."><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Daha samimi.." />Daha samimi..</a></strong><p>Uzun zamandır yine bişeyeler yazamıyorum. Ne yaptığımında farkında değilim açıkcası. Vakit harcanıp</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/programlama/google-page-rank-checker.html" rel="bookmark" title="Google Page Rank Checker"><img src="http://www.evrence.com/wp-content/themes/evrenCe/images/benzer-yazi.png" width="70" height="50" alt="Google Page Rank Checker" />Google Page Rank Checker</a></strong><p>Geçenlerde bay egonomik karşma bununla çıktı. Bu işte anlayın google page rank</p>
</div>

	    
    		

		<div class="benzer-yazi"><strong><a href="http://www.evrence.com/eglence/zara-tasarimicilarinin-mukemmel-eseri.html" rel="bookmark" title="ZARA Tasarımıcılarının Mükemmel Eseri !"><img src="http://www.evrence.com/wp-content/uploads/2010/02/DSCN4074-150x112.jpg" width="70" height="50" alt="ZARA Tasarımıcılarının Mükemmel Eseri !" />ZARA Tasarımıcılarının Mükemmel Eseri !</a></strong><p>Geçenlerde AnkaMall de dolanırken Zara Man &#8216;a gireyim dedim. Niyetim, var ise</p>
</div>

	

]]></content:encoded>
			<wfw:commentRss>http://www.evrence.com/programlama/jquery/jqueryjson-ve-php-mukemmel-grup.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

