<?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>ajaxBlender.com&#8212; A Whole Lot of AJAX! Directory for Web 2.0 AJAX scripts, demos and tutorials. Custom AJAX Coding Service for Your Web 2.0 Website.</title>
	<atom:link href="http://www.ajaxblender.com/tag/ajax/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxblender.com</link>
	<description>A Whole Lot of AJAX!</description>
	<lastBuildDate>Mon, 02 May 2011 07:38:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Create Custom AJAX Tabs using jQuery</title>
		<link>http://www.ajaxblender.com/howto-create-custom-jquery-tabs.html</link>
		<comments>http://www.ajaxblender.com/howto-create-custom-jquery-tabs.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:56:29 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[beginner's guide]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1049</guid>
		<description><![CDATA[Today&#8217;s morning started a little hot here at ajaxBlender. We had some free time before starting the production meeting, and Mike (our lead developer guy) and Justin (newbie who joined us in November) started arguing about their respective abilities of creating cross-browser markup code (HTML, CSS, JS) by hand without mistakes, but also doing it [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s morning started a little hot here at ajaxBlender. We had some free time before starting the production meeting, and Mike (our lead developer guy) and Justin (newbie who joined us in November) started arguing about their respective abilities of creating cross-browser markup code (HTML, CSS, JS) by hand without mistakes, but also doing it really fast.<span id="more-1049"></span>The exchange went a little like this:</p>
<div class="user-email">
<p><strong>J: </strong>I am sure, there is no way you can create scripts from scratch fast. First thing is you integrate the 3rd party stuff. This is easy but when you have to create your custom code, it will require time for debugging, planning the structure, etc &#8211; even for small scripts.</p>
<p><strong>M:</strong> Ha, do you want to try me? ;) You select a script and I do it. If I do it you owe me a pizza and make me coffee each morning for a week, otherwise I will for you.</p>
<p><strong>J: </strong>Hm.. Sounds good. What about ajax tabs?</p>
<p><strong>M:</strong> No problem :) How much time?</p>
<p><strong>J:</strong> 10 minutes?</p>
<p><strong>M: </strong>Great!</div>
<p>As you see, resolution to the matter involved a little fun and a wager (pizza).</p>
<p>Experience took its part &#8211; Justin lost. We recorded the process for proof ;) and now we’re posting it with a quick tutorial. You can watch Mike “cook” the code in the time-lapse YouTube video below, and you can <a href="http://www.ajaxblender.com/article-sources/jquery/ajax-tabs-example/download/ajax-tabs-demo.zip">download his AJAX tabs here</a>.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7A2E1ope4PM&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/7A2E1ope4PM&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>That&#8217;s it ;) Click the <strong>Demo</strong> button to see it in action.</p>
<p>Here’s the code he created:</p>
<h3>HTML</h3>
<pre class="html">
<span class="htmlOtherTag">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;</span>
<span class="htmlOtherTag">&lt;html xmlns=<span class="htmlAttributeValue">&quot;http://www.w3.org/1999/xhtml&quot;</span>&gt;</span>
<span class="htmlOtherTag">&lt;head&gt;</span>
     <span class="htmlOtherTag">&lt;meta http-equiv=<span class="htmlAttributeValue">&quot;Content-Type&quot;</span> content=<span class="htmlAttributeValue">&quot;text/html; charset=UTF-8&quot;</span> /&gt;</span>
     <span class="htmlOtherTag">&lt;title&gt;</span>Tabs Demo<span class="htmlOtherTag">&lt;/title&gt;</span>
     <span class="htmlOtherTag">&lt;link rel=<span class="htmlAttributeValue">&quot;stylesheet&quot;</span> href=<span class="htmlAttributeValue">&quot;./main.css&quot;</span> /&gt;</span>
     <span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;./jquery-1.3.2.min.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
     <span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;./main.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
<span class="htmlOtherTag">&lt;/head&gt;</span>
<span class="htmlOtherTag">&lt;body&gt;</span>
     <span class="htmlOtherTag">&lt;div id=<span class="htmlAttributeValue">&quot;page&quot;</span>&gt;</span>
          <span class="htmlOtherTag">&lt;ul id=<span class="htmlAttributeValue">&quot;tabs&quot;</span>&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;./tabs/tab-1.html&quot;</span>&gt;</span>Tab 1<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;./tabs/tab-2.html&quot;</span>&gt;</span>Tab 2<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
               <span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;./tabs/tab-3.html&quot;</span>&gt;</span>Tab 3<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
          <span class="htmlOtherTag">&lt;/ul&gt;</span>
          <span class="htmlOtherTag">&lt;div id=<span class="htmlAttributeValue">&quot;tabs-container&quot;</span>&gt;</span>
               Loading. Please Wait...
          <span class="htmlOtherTag">&lt;/div&gt;</span>
<span class="htmlOtherTag">&lt;/div&gt;</span>
<span class="htmlOtherTag">&lt;/body&gt;</span>
<span class="htmlOtherTag">&lt;/html&gt;</span>
</pre>
<h3>CSS</h3>
<pre class="css">
<span class="cssSelector">BODY {</span>
     <span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 20px</span><span class="cssRest">;</span>
     <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 20px</span><span class="cssRest">;</span>
     <span class="cssProperty">font-family</span><span class="cssRest">:</span><span class="cssValue"> <span class="cssString">"Lucida Grande"</span>, Arial, Helvetica, sans-serif</span><span class="cssRest">;</span>
     <span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 12px</span><span class="cssRest">;</span>
     <span class="cssProperty">color</span><span class="cssRest">:</span><span class="cssValue"> #333333</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">#page {</span>
     <span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> auto</span><span class="cssRest">;</span>
     <span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 1000px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs {</span>
     <span class="cssProperty">position</span><span class="cssRest">:</span><span class="cssValue"> relative</span><span class="cssRest">;</span>
     <span class="cssProperty">z-index</span><span class="cssRest">:</span><span class="cssValue"> 2</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs, UL.mytabs LI {</span>
     <span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
     <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0</span><span class="cssRest">;</span>
     <span class="cssProperty">list-style</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
     <span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs LI {</span> <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 0 5px</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs LI A {</span>
     <span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
     <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 7px</span><span class="cssRest">;</span>
     <span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue"> 1px solid #CCCCCC</span><span class="cssRest">;</span>
     <span class="cssProperty">border-bottom</span><span class="cssRest">:</span><span class="cssValue"> 1px solid #E0E0E0</span><span class="cssRest">;</span>
     <span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> #F0F0F0</span><span class="cssRest">;</span>
     <span class="cssProperty">text-decoration</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
     <span class="cssProperty">color</span><span class="cssRest">:</span><span class="cssValue"> #333333</span><span class="cssRest">;</span>
     <span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 22px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs LI A:HOVER, UL.mytabs LI.current A {</span>
     <span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> #FFFFFF</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">UL.mytabs LI.current A {</span>
     <span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
     <span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 14px</span><span class="cssRest">;</span>
     <span class="cssProperty">border-bottom</span><span class="cssRest">:</span><span class="cssValue"> 1px solid #FFFFFF</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.mytabs-container {</span>
     <span class="cssProperty">position</span><span class="cssRest">:</span><span class="cssValue"> relative</span><span class="cssRest">;</span>
     <span class="cssProperty">z-index</span><span class="cssRest">:</span><span class="cssValue"> 1</span><span class="cssRest">;</span>
     <span class="cssProperty">clear</span><span class="cssRest">:</span><span class="cssValue"> both</span><span class="cssRest">;</span>
     <span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue"> 1px solid #E0E0E0</span><span class="cssRest">;</span>
     <span class="cssProperty">padding</span><span class="cssRest">:</span><span class="cssValue"> 10px</span><span class="cssRest">;</span>
     <span class="cssProperty">top</span><span class="cssRest">:</span><span class="cssValue"> -1px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
</pre>
<h3>JavaScript</h3>
<pre class="php">
<span class="phpKeyword">
var </span>containerId <span class="phpOperator">=</span> <span class="phpString">'#tabs-container'</span><span class="phpText">;</span>
<span class="phpKeyword">
var </span>tabsId <span class="phpOperator">=</span> <span class="phpString">'#tabs'</span><span class="phpText">;</span>
$<span class="phpOperator">(</span>document<span class="phpOperator">)</span>.ready<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
     <span class="phpComment">// Preload tab on page load
</span>    <span class="phpKeyword"> if<span class="phpOperator">(</span></span>$<span class="phpOperator">(</span>tabsId <span class="phpOperator">+</span> <span class="phpString">' LI<span class="phpOperator">.</span>current A'</span><span class="phpOperator">)</span>.length <span class="phpOperator">&gt;</span> <span class="phpNumber">0</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          loadTab<span class="phpOperator">(</span>$<span class="phpOperator">(</span>tabsId <span class="phpOperator">+</span> <span class="phpString">' LI<span class="phpOperator">.</span>current A'</span><span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span>
     $<span class="phpOperator">(</span>tabsId <span class="phpOperator">+</span> <span class="phpString">' A'</span><span class="phpOperator">)</span>.click<span class="phpOperator">(</span><span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
         <span class="phpKeyword"> if<span class="phpOperator">(</span></span>$<span class="phpOperator">(</span>this<span class="phpOperator">)</span>.parent<span class="phpOperator">(</span><span class="phpOperator">)</span>.hasClass<span class="phpOperator">(</span><span class="phpString">'current'</span><span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpOperator">{</span><span class="phpKeyword"> return </span>>false<span class="phpText">;</span> <span class="phpOperator">}</span>
          $<span class="phpOperator">(</span>tabsId <span class="phpOperator">+</span> <span class="phpString">' LI<span class="phpOperator">.</span>current'</span><span class="phpOperator">)</span>.removeClass<span class="phpOperator">(</span><span class="phpString">'current'</span><span class="phpOperator">)</span><span class="phpText">;</span>
          $<span class="phpOperator">(</span>this<span class="phpOperator">)</span>.parent<span class="phpOperator">(</span><span class="phpOperator">)</span>.addClass<span class="phpOperator">(</span><span class="phpString">'current'</span><span class="phpOperator">)</span><span class="phpText">;</span>
          loadTab<span class="phpOperator">(</span>$<span class="phpOperator">(</span>this<span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpText">;</span>
         <span class="phpKeyword"> return </span>>false<span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunctionKeyword">function</span> loadTab<span class="phpOperator">(</span>tabObj<span class="phpOperator">)</span><span class="phpOperator">{</span>
    <span class="phpKeyword"> if<span class="phpOperator">(</span></span><span class="phpOperator">!</span>tabObj <span class="phpOperator">|</span><span class="phpOperator">|</span> <span class="phpOperator">!</span>tabObj<span class="phpOperator">.</span>length<span class="phpOperator">)</span><span class="phpOperator">{</span><span class="phpKeyword"> return<span class="phpText">;</span></span> <span class="phpOperator">}</span>
     $<span class="phpOperator">(</span>containerId<span class="phpOperator">)</span>.addClass<span class="phpOperator">(</span><span class="phpString">'loading'</span><span class="phpOperator">)</span><span class="phpText">;</span>
     $<span class="phpOperator">(</span>containerId<span class="phpOperator">)</span>.fadeOut<span class="phpOperator">(</span><span class="phpString">'fast'</span><span class="phpOperator">)</span><span class="phpText">;</span>
     $<span class="phpOperator">(</span>containerId<span class="phpOperator">)</span>.load<span class="phpOperator">(</span>tabObj<span class="phpOperator">.</span>attr<span class="phpOperator">(</span><span class="phpString">'href'</span><span class="phpOperator">)</span>, <span class="phpFunctionKeyword">function</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">{</span>
          $<span class="phpOperator">(</span>containerId<span class="phpOperator">)</span>.removeClass<span class="phpOperator">(</span><span class="phpString">'loading'</span><span class="phpOperator">)</span><span class="phpText">;</span>
          $<span class="phpOperator">(</span>containerId<span class="phpOperator">)</span>.fadeIn<span class="phpOperator">(</span><span class="phpString">'fast'</span><span class="phpOperator">)</span><span class="phpText">;</span>
     <span class="phpOperator">}</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
</pre>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=1049&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/howto-create-custom-jquery-tabs.html/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>qTip</title>
		<link>http://www.ajaxblender.com/qtip-jquery-tooltip-plugin.html</link>
		<comments>http://www.ajaxblender.com/qtip-jquery-tooltip-plugin.html#comments</comments>
		<pubDate>Fri, 30 Oct 2009 13:09:34 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[tooltip effect]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=929</guid>
		<description><![CDATA[qTip is an advanced tooltip plugin for jQuery framework. 
]]></description>
			<content:encoded><![CDATA[<p>qTip is an advanced tooltip plugin for jQuery framework. </p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=929&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/qtip-jquery-tooltip-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Username Availability Checker Using MooTools</title>
		<link>http://www.ajaxblender.com/ajax-username-availability-checker-using-mootools.html</link>
		<comments>http://www.ajaxblender.com/ajax-username-availability-checker-using-mootools.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 13:14:19 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=525</guid>
		<description><![CDATA[There a many examples of egregious usages of Ajax out there but every once in a while you find a great usage of Ajax. One great usage is the username availability checker. Why make the user submit their form if you can just use Ajax to let them know if it’s available right away? Read [...]]]></description>
			<content:encoded><![CDATA[<p>There a many examples of egregious usages of Ajax out there but every once in a while you find a great usage of Ajax. One great usage is the username availability checker. Why make the user submit their form if you can just use Ajax to let them know if it’s available right away? Read this tutorial to learn how you can implement a username available checker using Mootools.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=525&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/ajax-username-availability-checker-using-mootools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an Ajax Application with Script.aculo.us &amp; NetBeans</title>
		<link>http://www.ajaxblender.com/creating-an-ajax-application-with-script-aculo-us-netbeans.html</link>
		<comments>http://www.ajaxblender.com/creating-an-ajax-application-with-script-aculo-us-netbeans.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 12:36:30 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[script.aculo.us]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/creating-an-ajax-application-with-script-aculo-us-netbeans.html</guid>
		<description><![CDATA[This tutorial demonstrates the usage of the Java Persistence APIs to implement server side pagination (recommended for large sets of data) and to get and display the results in a text field featuring Ajax functionality.
]]></description>
			<content:encoded><![CDATA[<p>This tutorial demonstrates the usage of the Java Persistence APIs to implement server side pagination (recommended for large sets of data) and to get and display the results in a text field featuring Ajax functionality.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=440&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/creating-an-ajax-application-with-script-aculo-us-netbeans.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Tabs Reload and Evaluate Scripts using Ext.JS</title>
		<link>http://www.ajaxblender.com/how-to-make-tabs-reload-and-evaluate-scripts-using-ext-js.html</link>
		<comments>http://www.ajaxblender.com/how-to-make-tabs-reload-and-evaluate-scripts-using-ext-js.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:44:46 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Ext.JS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/how-to-make-tabs-reload-and-evaluate-scripts-using-ext-js.html</guid>
		<description><![CDATA[You can execute JavaScript code loaded via AJAX into a tab panel using Ext.JS, but it will evaluate only once (after content is loaded). Many times you need it to reload if the user re-selects the tab. The author of this Ext.JS tutorial explains how to make it execute each time the Ext.JS tab is [...]]]></description>
			<content:encoded><![CDATA[<p>You can execute JavaScript code loaded via AJAX into a tab panel using Ext.JS, but it will evaluate only once (after content is loaded). Many times you need it to reload if the user re-selects the tab. The author of this Ext.JS tutorial explains how to make it execute each time the Ext.JS tab is activated.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=431&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/how-to-make-tabs-reload-and-evaluate-scripts-using-ext-js.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopping Cart using Script.aculo.us</title>
		<link>http://www.ajaxblender.com/shopping-cart-using-script-aculo-us.html</link>
		<comments>http://www.ajaxblender.com/shopping-cart-using-script-aculo-us.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:32:43 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[script.aculo.us]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Drag-and-Drop]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=419</guid>
		<description><![CDATA[This tutorial explains how to create a shopping cart which uses AJAX and drag and drop functionality to add products to it.
]]></description>
			<content:encoded><![CDATA[<p>This tutorial explains how to create a shopping cart which uses AJAX and drag and drop functionality to add products to it.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=419&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/shopping-cart-using-script-aculo-us.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Auto Completer using Prototype, Script.aculo.us</title>
		<link>http://www.ajaxblender.com/how-to-create-auto-completer-using-script-aculo-us.html</link>
		<comments>http://www.ajaxblender.com/how-to-create-auto-completer-using-script-aculo-us.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:13:58 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[script.aculo.us]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[search suggestion control]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=415</guid>
		<description><![CDATA[If you use Gmail to send mails, you might recall that while typing the To address, Gmail shows a probable list of users from your address book. Nowadays most of the modern browsers also have this Auto Suggest control built in them, i.e when the user begins to type in a text box, a menu [...]]]></description>
			<content:encoded><![CDATA[<p>If you use Gmail to send mails, you might recall that while typing the To address, Gmail shows a probable list of users from your address book. Nowadays most of the modern browsers also have this Auto Suggest control built in them, i.e when the user begins to type in a text box, a menu appears below the text offering completion suggestions.<span id="more-415"></span>If you use Gmail to send mails, you might recall that while typing the To address, Gmail shows a probable list of users from your address book. Nowadays most of the modern browsers also have this Auto Suggest control built in them, i.e when the user begins to type in a text box, a menu appears below the text offering completion suggestions.</p>
<p>In this tutorial author explains how to create an Auto Suggest Box using Prototype, Script.aculo.us. The script.aculo.us auto suggest box (autocompleter) replicates this control, but gives the developer control of the probable suggestions.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=415&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/how-to-create-auto-completer-using-script-aculo-us.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Dynamic Poll with jQuery and PHP</title>
		<link>http://www.ajaxblender.com/creating-a-dynamic-poll-with-jquery-and-php.html</link>
		<comments>http://www.ajaxblender.com/creating-a-dynamic-poll-with-jquery-and-php.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:10:46 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=407</guid>
		<description><![CDATA[When you combine some neat functionality courtesy of PHP with the cleverness of jQuery you can produce some pretty cool results. In this tutorial author explains how to create a poll using PHP and XHTML, then make use of some jQuery Ajax effects to eliminate the need for a page refresh, and to give it [...]]]></description>
			<content:encoded><![CDATA[<p>When you combine some neat functionality courtesy of PHP with the cleverness of jQuery you can produce some pretty cool results. In this tutorial author explains <strong>how to create a poll using PHP and XHTML</strong>, then make use of some jQuery Ajax effects to eliminate the need for a page refresh, and to give it a nice little bit of animation.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=407&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/creating-a-dynamic-poll-with-jquery-and-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit A Form Without Page Refresh using jQuery</title>
		<link>http://www.ajaxblender.com/submit-a-form-without-page-refresh-using-jquery.html</link>
		<comments>http://www.ajaxblender.com/submit-a-form-without-page-refresh-using-jquery.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 12:58:10 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=396</guid>
		<description><![CDATA[In this tutorial, the author demonstrates how to create a simple contact form with name, email and phone number and submit data from all fields to a PHP script on web server without page refresh. JavaScript code uses native jQuery functions so that you won&#8217;t need to download any extra plug-ins to make it work.
]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, the author demonstrates <strong>how to create a simple contact form</strong> with name, email and phone number and submit data from all fields to a PHP script on web server without page refresh. JavaScript code uses native jQuery functions so that you won&#8217;t need to download any extra plug-ins to make it work.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=396&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/submit-a-form-without-page-refresh-using-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Fancy Apple-style Search Suggestion</title>
		<link>http://www.ajaxblender.com/how-to-create-a-fancy-apple-style-search-suggestion.html</link>
		<comments>http://www.ajaxblender.com/how-to-create-a-fancy-apple-style-search-suggestion.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 12:27:30 +0000</pubDate>
		<dc:creator>ajaxBlender.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[jquery effects]]></category>
		<category><![CDATA[search suggestion control]]></category>
		<category><![CDATA[tooltip effect]]></category>

		<guid isPermaLink="false">http://www.ajaxblender.com/?p=393</guid>
		<description><![CDATA[Learn how to create a fancy apple.com-style search suggestion control. The tutorial contains detailed step-by-step explanation.
]]></description>
			<content:encoded><![CDATA[<p>Learn how to create a <strong>fancy apple.com-style search suggestion control</strong>. The tutorial contains detailed step-by-step explanation.</p>
<img src="http://www.ajaxblender.com/?ak_action=api_record_view&id=393&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.ajaxblender.com/how-to-create-a-fancy-apple-style-search-suggestion.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

