<?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>Blogfreakz - Web Design and Web Development resources &#187; Ajax</title>
	<atom:link href="http://blogfreakz.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Wed, 23 May 2012 08:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How To Add A &#8220;Load More Posts&#8221; Button In WordPress</title>
		<link>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 10:17:01 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26779</guid>
		<description><![CDATA[Today&#8217;s featured WordPress tutorial comes from Michael Martin and it&#8217;s about replacing the &#8220;Older Posts&#8221; link on your blog with a button that extends the length of the current web page instead of reloading it; it is similar to how you view older tweets on Twitter. A partial screenshot of the button You can check [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s featured WordPress tutorial comes from <a href="http://www.problogdesign.com/author/admin/"><strong>Michael Martin</strong></a> and it&#8217;s about replacing the &#8220;Older Posts&#8221; link on your blog with a button that extends the length of the current web page instead of reloading it; it is similar to how you view older tweets on Twitter.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-26780" title="Load More Posts" src="http://blogfreakz.com/wp-content/uploads/2012/04/Load-More-Posts.jpg" alt="Load More Posts How To Add A Load More Posts Button In WordPress" width="344" height="302" /><em>A partial screenshot of the button</em></p>
<p>You can check it out on the <a href="http://www.problogdesign.com/demo/ajax-load-posts/"><strong>demo</strong></a> here.</p>
<p>In Michael&#8217;s tutorial, you&#8217;ll be using AJAX to create the plugin which will have the following features:</p>
<ul>
<li>Multiple clicks – First clicks will load page 2?s posts, second will load page 3 etc.)</li>
<li>Check for posts first – If there are no more posts that can be loaded, we’ll tell the user.</li>
<li>Degrade gracefully – If a visitor doesn’t use JavaScript, we won’t change the site at all.</li>
</ul>
<p>Below is a snippet taken from the javascript that makes the AJAX call:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">$('.pbd-alp-placeholder-'+ pageNum).load(nextLink + ' .post',</span></pre>
<pre><span style="color: #003366;">function() {</span></pre>
<pre><span style="color: #003366;">//   Update page number and nextLink.</span></pre>
<pre><span style="color: #003366;">pageNum++;</span></pre>
<pre><span style="color: #003366;">nextLink   = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);</span></pre>
<pre><span style="color: #003366;">//   Add a new placeholder, for when user clicks again.</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts')</span></pre>
<pre><span style="color: #003366;">.before('&lt;div  &gt;&lt;/div&gt;')</span></pre>
<pre><span style="color: #003366;">//   Update the button message.</span></pre>
<pre><span style="color: #003366;">if(pageNum   &lt;= max) {</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts   a').text('Load More Posts');</span></pre>
<pre><span style="color: #003366;">}   else {</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts   a').text('No more posts to load.');</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">);</span></pre>
</td>
</tr>
</tbody>
</table>
<p>On that note, if you want to see the rest of the code, you can download the completed files as a <a href="http://www.problogdesign.com/uploads/pbd-ajax-load-posts.zip"><strong>plugin.</strong></a> All you have to do is upload them in to your WordPress directory and activate it. But if you want to know more about the plugin&#8217;s nuts and bolts, you can check out Michael’s tutorial by <a href="http://www.problogdesign.com/wordpress/load-next-wordpress-posts-with-ajax/"><strong>clicking here</strong></a>.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts">wordpress load more posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="ajax load more posts wordpress">ajax load more posts wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="load more posts wordpress">load more posts wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="pbd-alp-load-posts">pbd-alp-load-posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="load more on wordpress posts">load more on wordpress posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts ajax">wordpress load more posts ajax</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts button">wordpress load more posts button</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress click on button load more posts slider">wordpress click on button load more posts slider</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress page 0">wordpress page 0</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress “load more” twitter">wordpress “load more” twitter</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Ajax to Save Changes in Contenteditable as JSON</title>
		<link>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/</link>
		<comments>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 08:58:28 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26581</guid>
		<description><![CDATA[Contents of any HTML5 element with a contenteditable attribute can be live-edited inside the browser window. But any changes that you apply won&#8217;t be saved on the actual document itself that is located in the server, so these changes won&#8217;t appear anymore once you refresh the page. To get around this and have the data [...]]]></description>
			<content:encoded><![CDATA[<p>Contents of any HTML5 element with a <strong>contenteditable</strong> attribute can be live-edited inside the browser window. But any changes that you apply won&#8217;t be saved on the actual document itself that is located in the server, so these changes won&#8217;t appear anymore once you refresh the page.</p>
<p>To get around this and have the data saved is to wait for the Return key to be pressed, which then sends the new inner HTML of the element as an AJAX call and blurs the element. you can then press Esc to return the element to its pre-edited state.</p>
<p>You can see more of this in Remy Sharp&#8217;s <a href="http://jsbin.com/owavu3"><strong>demo</strong></a> .</p>
<p><strong>JavaScript</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">document.addEventListener('keydown', function (event) {</span></pre>
<pre><span style="color: #003366;">var esc = event.which == 27,</span></pre>
<pre><span style="color: #003366;">nl = event.which == 13,</span></pre>
<pre><span style="color: #003366;">el = event.target,</span></pre>
<pre><span style="color: #003366;">input = el.nodeName != 'INPUT'   &amp;&amp; el.nodeName != 'TEXTAREA',</span></pre>
<pre><span style="color: #003366;">data = {};</span></pre>
<pre><span style="color: #003366;">if (input) {</span></pre>
<pre><span style="color: #003366;">if (esc) {</span></pre>
<pre><span style="color: #003366;">// restore state</span></pre>
<pre><span style="color: #003366;">document.execCommand('undo');</span></pre>
<pre><span style="color: #003366;">el.blur();</span></pre>
<pre><span style="color: #003366;">} else if (nl) {</span></pre>
<pre><span style="color: #003366;">// save</span></pre>
<pre><span style="color: #003366;">data[el.getAttribute('data-name')] = el.innerHTML;</span></pre>
<pre><span style="color: #003366;">// we could send an ajax request to   update the field</span></pre>
<pre><span style="color: #003366;">/*</span></pre>
<pre><span style="color: #003366;">$.ajax({</span></pre>
<pre><span style="color: #003366;">url:   window.location.toString(),</span></pre>
<pre><span style="color: #003366;">data: data,</span></pre>
<pre><span style="color: #003366;">type: 'post'</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">*/</span></pre>
<pre><span style="color: #003366;">log(JSON.stringify(data));</span></pre>
<pre><span style="color: #003366;">el.blur();</span></pre>
<pre><span style="color: #003366;">event.preventDefault();</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}, true);</span></pre>
<pre><span style="color: #003366;">function log(s) {</span></pre>
<pre><span style="color: #003366;">document.getElementById('debug').innerHTML = 'value changed to: ' + s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable save changes">contenteditable save changes</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="saving changes after using contenteditable">saving changes after using contenteditable</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable ajax">contenteditable ajax</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable save">contenteditable save</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="create website with contenteditable">create website with contenteditable</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable tutorial">contenteditable tutorial</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="html 5 content editable color picker">html 5 content editable color picker</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="html contenteditable save changes">html contenteditable save changes</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="html5 contenteditable ajax">html5 contenteditable ajax</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="php file manager contenteditable">php file manager contenteditable</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create AJAX Loading Animation with CSS3</title>
		<link>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/</link>
		<comments>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 06:00:47 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[loading animation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25500</guid>
		<description><![CDATA[Now we don’t have to rely on animated gifs in creating AJAX loading animation effects. This CSS3 tutorial will teach us how to create three different types of loading animation. Let’s start off with our HTML markup. HTML Markup &#60;div id='loading'&#62; &#60;div id='Column1' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column2' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column3' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column4' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column5' [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"></span></p>
<p>Now we don’t have to rely on animated gifs in creating AJAX loading animation effects. This CSS3 tutorial will teach us how to create three different types of loading animation.</p>
<p><img class="aligncenter size-full wp-image-25501" title="Animation" src="http://blogfreakz.com/wp-content/uploads/2012/02/Animation.jpg" alt="Animation Create AJAX Loading Animation with CSS3" width="404" height="116" /></p>
<p><em> </em>Let’s start off with our HTML markup.</p>
<p><strong>HTML Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div id='loading'&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column1'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column2'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column3'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column4'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column5'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column6'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Each &lt;div class=’Columns’&gt; basically represents each of the bars in our animated loader. Now on to CSS!</p>
<p><strong>CSS Markup</strong> for the <span style="text-decoration: underline;">first</span> loading animation</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">#loading{</span></pre>
<pre><span style="color: #003366;">margin-top:30px;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">width:95px;</span></pre>
<pre><span style="color: #003366;">height:32px;</span></pre>
<pre><span style="color: #003366;">background-color:#779ec2;</span></pre>
<pre><span style="color: #003366;">margin-left:30px;</span></pre>
<pre><span style="color: #003366;">/* CSS3   Border  Radius for rounded corner */</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius:   5px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 5px;</span></pre>
<pre><span style="color: #003366;">border-radius: 5px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.Columns{</span></pre>
<pre><span style="color: #003366;">background-color:#fff;</span></pre>
<pre><span style="color: #003366;">border:1px solid   #fff;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">height:30px;</span></pre>
<pre><span style="color: #003366;">margin-left:5px;</span></pre>
<pre><span style="color: #003366;">width:10px;</span></pre>
<pre><span style="color: #003366;">/* Here we will   define an animation name and then we will animate it later */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-name:   animation;</span></pre>
<pre><span style="color: #003366;">/* total time   for animation to complete one cycle */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-duration: 3s;</span></pre>
<pre><span style="color: #003366;">/* Number of   loops for animation cycle we set it infinite */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-iteration-count: infinite;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-direction: linear;</span></pre>
<pre><span style="color: #003366;">/* Initially the   opacity of Columns is zero */</span></pre>
<pre><span style="color: #003366;">opacity:0;</span></pre>
<pre><span style="color: #003366;">/* Scale it to   0.8 in starting */</span></pre>
<pre><span style="color: #003366;">-webkit-transform:scale(0.8);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column1{</span></pre>
<pre><span style="color: #003366;">/* Column1   animation delay by .3 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .3s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column2{</span></pre>
<pre><span style="color: #003366;">/* Column2   animation delay by .4 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .4s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column3{</span></pre>
<pre><span style="color: #003366;">/* Column3   animation delay by .5 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .5s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column4{</span></pre>
<pre><span style="color: #003366;">/* Column4   animation delay by .6 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .6s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column5{</span></pre>
<pre><span style="color: #003366;">/* Column5   animation delay by .7 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .7s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column6{</span></pre>
<pre><span style="color: #003366;">/* Column6   animation delay by .8 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .8s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">/* Earlier we have defined animation-name as animation now the   animation properties will set here */</span></pre>
<pre><span style="color: #003366;">@-webkit-keyframes animation{</span></pre>
<pre><span style="color: #003366;">/* opacity of Column   will be 0 at beginning of animation */</span></pre>
<pre><span style="color: #003366;">0%{opacity:0;}</span></pre>
<pre><span style="color: #003366;">/* opacity of Column   will be 1 at middle of animation */</span></pre>
<pre><span style="color: #003366;">50%{opacity:1;}</span></pre>
<pre><span style="color: #003366;">/* Back to   opacity zero when animation completes its cycle */</span></pre>
<pre><span style="color: #003366;">100%{opacity:0;}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;">Second</span> loading animation <strong>CSS Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">#loading1{</span></pre>
<pre><span style="color: #003366;">margin-top:30px;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">margin-left:30px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.Columns1{</span></pre>
<pre><span style="color: #003366;">background-color:#39F;</span></pre>
<pre><span style="color: #003366;">border:1px solid   #00F;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">height:30px;</span></pre>
<pre><span style="color: #003366;">margin-left:5px;</span></pre>
<pre><span style="color: #003366;">width:8px;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-name:   animation1;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-duration: 2s;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-iteration-count: infinite;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-direction: linear;</span></pre>
<pre><span style="color: #003366;">opacity:0.2;</span></pre>
<pre><span style="color: #003366;">-webkit-transform:scale(0.6);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column11{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .3s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column22{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .4s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column33{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .5s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column44{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .6s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column55{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .7s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column66{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .8s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">@-webkit-keyframes animation1{</span></pre>
<pre><span style="color: #003366;">0%{-webkit-transform:   scale(.9);opacity:1;}</span></pre>
<pre><span style="color: #003366;">100%{-webkit-transform:   scale(.2);opacity:0.1;}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;">Third</span> loading animation <strong>CSS Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre>#loading2{</pre>
<pre>margin-top:30px;</pre>
<pre>float:left;</pre>
<pre>margin-left:30px;</pre>
<pre>}</pre>
<pre>.Columns2{</pre>
<pre>-webkit-border-radius:   10px;</pre>
<pre>-moz-border-radius: 10px;</pre>
<pre>border-radius: 10px;</pre>
<pre>background-color:#39F;</pre>
<pre>float:left;</pre>
<pre>height:20px;</pre>
<pre>margin-left:5px;</pre>
<pre>width:20px;</pre>
<pre>-webkit-animation-name:   animation2;</pre>
<pre>-webkit-animation-duration: 2s;</pre>
<pre>-webkit-animation-iteration-count: infinite;</pre>
<pre>-webkit-animation-direction: linear;</pre>
<pre>opacity:0;</pre>
<pre>}</pre>
<pre>#Column111{</pre>
<pre>-webkit-animation-delay: .1s;</pre>
<pre>}</pre>
<pre>#Column222{</pre>
<pre>-webkit-animation-delay: .3s;</pre>
<pre>}</pre>
<pre>#Column333{</pre>
<pre>-webkit-animation-delay: .5s;</pre>
<pre>}</pre>
<pre>#Column444{</pre>
<pre>-webkit-animation-delay: .7s;</pre>
<pre>}</pre>
<pre>@-webkit-keyframes animation2{</pre>
<pre>0%{opacity:0;}</pre>
<pre>50%{opacity:1;}</pre>
<pre>100%{opacity:0;}</pre>
<pre>}</pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Pretty short, quick, and easy, isn’t it? Have fun using it in your website!</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="design ajax css3">design ajax css3</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajax loading animation">ajax loading animation</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajax loading">ajax loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="loading">loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="animation loading">animation loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajaxloading">ajaxloading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="loading animated image">loading animated image</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="animated loading image">animated loading image</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="css3 loading animation">css3 loading animation</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="facebook loader animated gif image file">facebook loader animated gif image file</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Your Files with These 10 Powerful jQuery Uploader Plugins</title>
		<link>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/</link>
		<comments>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 02:21:23 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[jQuery Plugins]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23609</guid>
		<description><![CDATA[Today&#8217;s web developers are unstoppable about creating newer and better plugins for your web site, so I’ve gathered 10 of the most powerful jQuery File Uploaders for your web site or blog. One of the plugins featured here is the jQuery upload which lets you upload your files by Ajax style. Ajax Upload by Valums [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Today&#8217;s web developers are unstoppable about creating newer and better plugins for your web site, so I’ve gathered 10 of the most powerful jQuery File Uploaders for your web site or blog. One of the plugins featured here is the jQuery upload which lets you upload your files by Ajax style.</p>
<p><strong><a href="http://valums.com/ajax-upload/">Ajax Upload by Valums</a></strong></p>
<p align="left">Ajax Upload provides good user experiences everywhere. It uses XHR for multiple uploads of files with progress bar in FF3.6+, Safari4+, Chrome and goes back to the hidden iframe based-upload in other browsers.</p>
<p><strong><a href=" http://www.plupload.com/example_all_runtimes.php">Plupload v1.5.1.1</a></strong></p>
<p align="left">This file uploader lets you upload your files using Silverlight, Flash, HTML5 Gears and BrowserPlus. It also allows resizing of image and shows you its upload progress.</p>
<p><strong><a href="http://www.uploadify.com/demos/">Uploadify</a></strong></p>
<p align="left">This plugin combines Javascript and other known server-side languages. It has multiple file upload abilities and a large support community with the docs.</p>
<p><strong><a href="http://webdeveloperplus.com/jquery/ajax-multiple-file-upload-form-using-jquery/">Ajax Multiple File Upload Form using jQuery</a></strong></p>
<p align="left">This plugin permits the user to upload multiple files easily.</p>
<p><strong><a href="http://www.fyneworks.com/jquery/multiple-file-upload/">Multiple File Upload Plugin</a></strong></p>
<p align="left">This is an unobtrusive plugin which helps the user to select multiple files with ease, provides basic validation functionality, and helps identify errors without before you upload our files.</p>
<p><strong><a href="http://nixbox.com/demos/jquery-uploadprogress.php	">Uploadprogress v0.3 – jQuery + PHP plug-in</a></strong></p>
<p align="left">It allows users to select files individually and provides information about the uploading progress.</p>
<p><strong><a href=" http://malsup.com/jquery/form/file/	">jQuery Form Plugin</a></strong></p>
<p align="left">A basic file uploader form that allows you to test your files.</p>
<p><strong><a href="http://digitarald.de/project/fancyupload/3-0/showcase/photoqueue/">Fancy Upload – Swiff meets Ajax v3.0</a></strong></p>
<p align="left">This plugin is easy to set up, server-independent, uses MooTools to work on all modern browsers and styleable through XHTML and CSS. It features a multiple file selection menu and queued upload with animated progress bar.</p>
<p><strong><a href="http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/">SWFUpload jQuery Plugin</a></strong></p>
<p align="left">The SWFUploader, which was rewritten by Adam Royle, uses jQuery to make a real event dispatcher. It makes multiple SWFupload instances on single page easier to manage, completely separates SWFUpload object from UI codes, and has the ability to assign multiple callbacks per event.</p>
<p><strong><a href="http://pixeline.be/experiments/jqUploader/test.php">IqUploader</a></strong></p>
<p align="left">This plugin sends the file you choose the email address you input.</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file upload">jquery file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery upload">jquery upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file upload plugin">jquery file upload plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery multiple file upload">jquery multiple file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery multi file upload">jquery multi file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="file uploader">file uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="html5 file upload progress bar">html5 file upload progress bar</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="multi upload jquery">multi upload jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file uploader">jquery file uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery upload progress in lightbox">jquery upload progress in lightbox</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Line Ajax Requests With jQuery-ahm</title>
		<link>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/</link>
		<comments>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 13:19:37 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18418</guid>
		<description><![CDATA[jquery-ahm is a light-weight jquery plugin that reduces ajax requests to one-line. jquery-ahm is a replacement for $.ajax. With $.ajax, every ajax request needs a callback, resulting in a lot of javascript. $.ahm reduces javascript code by letting the response data define the actual callbacks. Features Super light-weight: ~1KB minified Reduces ajax requests to one-line [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jqueryahm" rel="nofollow" href="http://www.jqueryahm.com/" target="_blank">jquery-ahm</a> is a light-weight jquery plugin that reduces ajax requests to one-line. jquery-ahm is a replacement for $.ajax. With $.ajax, every ajax request needs a callback, resulting in a lot of javascript. $.ahm reduces javascript code by letting the response data define the actual callbacks.</p>
<p><span id="more-18418"></span><br />
<a rel="nofollow" href="http://www.jqueryahm.com"><img class="alignnone size-full wp-image-18420" title="jquery-ahm" src="http://blogfreakz.com/wp-content/uploads/2011/04/jquery-ahm.jpg" alt="jquery ahm One Line Ajax Requests With jQuery ahm" width="600" height="300" /></a></p>
<h3>Features</h3>
<ul>
<li> Super light-weight: ~1KB minified</li>
<li> Reduces ajax requests to one-line (including ajax form validation)</li>
<li> No more custom callbacks for every ajax request</li>
<li> Lets back-end define post ajax callbacks (applied automagically)</li>
<li> Supports all jquery + custom callbacks in back-end code</li>
<li> Drop in replacement for $.ajax() (supports all $.ajax options)</li>
</ul>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="jqueryahm" rel="nofollow" href="http://www.jqueryahm.com/examples" target="_blank">http://www.jqueryahm.com/examples</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line ajax call">jquery single line ajax call</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery ajax one string">jquery ajax one string</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jQuery ajax end request">jQuery ajax end request</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="line jquery">line jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="one line ajax">one line ajax</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line news">jquery single line news</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line twitter">jquery single line twitter</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="Request-Line jquery">Request-Line jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery-ahm simple example">jquery-ahm simple example</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery-ahm wordpress">jquery-ahm wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20  jQuery and CSS Awesome Effects</title>
		<link>http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/</link>
		<comments>http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 02:24:13 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Animated Parallax Effect]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[Hover with jQuery]]></category>
		<category><![CDATA[javascript library]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Leopard Desktop]]></category>
		<category><![CDATA[Photo Gallery]]></category>
		<category><![CDATA[Sliding Door Effect]]></category>
		<category><![CDATA[Sliding Login Panel]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[Z-index]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/</guid>
		<description><![CDATA[jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. You can create amazing effects using jQuery coupled with CSS and XHTML. Some previous posts on Designing Mall, like Five Usefull [...]]]></description>
			<content:encoded><![CDATA[<p>					jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. You can create amazing effects using jQuery coupled with CSS and XHTML. Some previous posts on Designing Mall, like Five Usefull CSS Properties and Pure CSS Effects and Tips deals with basic information regarding to CSS Effects, while this post belongs expert level of Effects some are with sources. So explore indepth about jQuery and CSS Effects and Animations in this post<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="jquery awesome effects">jquery awesome effects</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="jquery css awesome">jquery css awesome</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="awesome css effects">awesome css effects</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="awesome effects in jquery">awesome effects in jquery</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="awesome effects with jquery">awesome effects with jquery</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="awesome jquery effects">awesome jquery effects</a></li>
<li><a href="http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/" title="css awesome effects">css awesome effects</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/20-jquery-and-css-awesome-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Outstanding Collection of Resources for WordPress Content Sliders</title>
		<link>http://blogfreakz.com/news/an-outstanding-collection-of-resources-for-wordpress-content-sliders/</link>
		<comments>http://blogfreakz.com/news/an-outstanding-collection-of-resources-for-wordpress-content-sliders/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 12:36:44 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/an-outstanding-collection-of-resources-for-wordpress-content-sliders/</guid>
		<description><![CDATA[A collection of tutorials and plugins to give your WordPress website a featured content slider.]]></description>
			<content:encoded><![CDATA[<p>A collection of tutorials and plugins to give your WordPress website a featured content slider.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/an-outstanding-collection-of-resources-for-wordpress-content-sliders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>35  Latest AJAX Tutorials at your Disposal</title>
		<link>http://blogfreakz.com/news/35-latest-ajax-tutorials-at-your-disposal/</link>
		<comments>http://blogfreakz.com/news/35-latest-ajax-tutorials-at-your-disposal/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 11:27:27 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/35-latest-ajax-tutorials-at-your-disposal/</guid>
		<description><![CDATA[The presented post includes 35 Latest AJAX tutorials at your Disposal, they cover almost every aspect of AJAX development: forms, applications, polls, editing, parsing, visual effects and much more.]]></description>
			<content:encoded><![CDATA[<p>The presented post includes 35  Latest AJAX tutorials at your Disposal, they cover almost every aspect of AJAX development: forms, applications, polls, editing, parsing, visual effects and much more.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/35-latest-ajax-tutorials-at-your-disposal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add onto Your PHP Knowledge with 30 Expert Tutorials</title>
		<link>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/</link>
		<comments>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 09:52:24 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/</guid>
		<description><![CDATA[Internet realm is vast and does not limit itself for some basic development tools. It has diverse development tool kit in which PHP has a very significant role. PHP is an awesome tool and can develop desired website. Keeping this in mind, I am posting this perfect PHP round up article for those who are [...]]]></description>
			<content:encoded><![CDATA[<p>Internet realm is vast and does not limit itself for some basic development tools. It has diverse development tool kit in which PHP has a very significant role. PHP is an awesome tool and can develop desired website. Keeping this in mind, I am posting this perfect PHP round up article for those who are not expert but they want to be.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Best with 50  jQuery Tutorials</title>
		<link>http://blogfreakz.com/news/learn-best-with-50-jquery-tutorials/</link>
		<comments>http://blogfreakz.com/news/learn-best-with-50-jquery-tutorials/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 18:50:07 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/learn-best-with-50-jquery-tutorials/</guid>
		<description><![CDATA[Web design cannot be finished without jQuery because of many appropriate benefits. jQuery is very lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It basically simplifies HTML document crossing along with event handling and animating for rapid web development.]]></description>
			<content:encoded><![CDATA[<p>Web design cannot be finished without jQuery because of many appropriate benefits. jQuery is very lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It basically simplifies HTML document crossing along with event handling and animating for rapid web development.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/learn-best-with-50-jquery-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

